diff options
author | S Pradeep Kumar <gohanpra@gmail.com> | 2014-02-20 16:23:20 +0900 |
---|---|---|
committer | S Pradeep Kumar <gohanpra@gmail.com> | 2014-03-03 16:12:45 +0900 |
commit | 75f1142107af9a96ea3a997048e03c0e37b51b1c (patch) | |
tree | bfd01bc469ed6fea932dc96cc8bb05f652351e8f /src/test/ref/overflow_simple_b.html | |
parent | c4d177a3541b55c4b979afc8e7171fe0cfb4817e (diff) | |
download | servo-75f1142107af9a96ea3a997048e03c0e37b51b1c.tar.gz servo-75f1142107af9a96ea3a997048e03c0e37b51b1c.zip |
Implement mini-traversal for absolute flow assign-height.
This only traverses absolute flows, nothing else.
+ Also, a separate mini-traversal for store overflow.
+ Store descendants with position 'absolute' and 'fixed' in BaseFlow.
+ Bubble up links to absolute and fixed descendants during Flow Construction.
+ Set Rawlink to the CB in absolute descendants.
+ store_overflow() now uses absolute descendants' overflows too.
+ Add reftests for 'absolute' and 'fixed' static y position.
+ Add reftests for overflow (they all fail now).
+ Put absolute flow display items under their CB's ClipDisplayItem.
+ Paint borders in Box_ before the actual box stuff (minor fix in lieu of paint-order).
Diffstat (limited to 'src/test/ref/overflow_simple_b.html')
-rw-r--r-- | src/test/ref/overflow_simple_b.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ref/overflow_simple_b.html b/src/test/ref/overflow_simple_b.html new file mode 100644 index 00000000000..d899d1f950c --- /dev/null +++ b/src/test/ref/overflow_simple_b.html @@ -0,0 +1,15 @@ +<html> + <head> + <style> + #first { + height: 100px; + width: 100px; + background: green; + } + </style> + </head> + <body> + <div id="first"> + </div> + </body> +</html> |