servo/components/style
Patrick Walton 8640cf5588 layout: Take relative position offsets for inlines and inline-blocks
into account only once.

There were two bugs here: (1) relative position applied to
scanned/unscanned text fragments independently of the container element
that applied that relative position, causing double-counting; (2)
relative position applied to inline block fragments independently of the
wrapped block itself, causing double-counting.

This commit also removes the `cascade_anonymous` function and the
related `Fragment` constructor. They were unused, and their
functionality has been replaced by the `modify_style_for_*` series of
functions.

Closes #7067.
2015-08-12 08:28:35 -07:00
..
animation.rs style: Switch animation timestamps to be doubles instead of floats. 2015-08-01 17:46:39 -07:00
build.rs Fix CSSStyleDeclaration.setPropertyPriority 2015-07-31 08:08:36 +02:00
Cargo.toml servo: Update ipc-channel to pick up bincode support. 2015-08-08 09:43:53 -07:00
font_face.rs devtools: Convert the developer tools to run over IPC. 2015-07-27 09:10:01 -07:00
legacy.rs Update rust-selectors 2015-06-26 12:35:08 -07:00
lib.rs compositing: Make the constellation messages serializable. 2015-07-18 12:43:08 -07:00
Mako-0.9.1.zip Cargoify servo 2014-09-08 20:21:42 -06:00
media_queries.rs Use euclid from crates.io 2015-06-19 00:04:24 +02:00
node.rs Update rust-selectors 2015-06-26 12:35:08 -07:00
parser.rs Use the correct log crate and setup env_logger in main. 2015-06-06 23:20:40 +03:00
properties.mako.rs layout: Take relative position offsets for inlines and inline-blocks 2015-08-12 08:28:35 -07:00
README.md Update style/README.md - libcss is gone now 2014-10-23 16:23:54 -05:00
selector_matching.rs Support @font-face in user and user agent stylesheets. 2015-08-07 21:08:53 +02:00
stylesheets.rs Fix #6680 2015-07-22 16:45:43 +03:00
values.rs Start reporting memory usage for Window and all nodes in all DOM trees for frame treese in script tasks. 2015-08-03 23:05:00 -04:00
viewport.rs compositing: Make the constellation messages serializable. 2015-07-18 12:43:08 -07:00

servo-style

Style system for Servo, using rust-cssparser for parsing.