OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <p>Add a spanner inside a fixed-size clipped block inside a multicol container. It should not be | |
3 affected by the clipping, since the containing block of a spanner is the mul ticol | |
4 container. This also tests that we don't perform any optimized subtree layou t operations | |
5 incompatible with multicol (which would typically cause assertion failures). </p> | |
6 <p>You should see the word "PASS" below, and nothing else (no red, no "FAIL").</ p> | |
7 <div style="-webkit-columns:2; width:20em; height:10em; line-height:2em; overflo w:hidden;"> | |
Julien - ping for review
2015/08/03 16:47:59
Do we really need both this overflow: hidden and t
mstensho (USE GERRIT)
2015/08/04 12:06:07
When inserting a spanner, we insert a spanner plac
Julien - ping for review
2015/08/05 16:34:26
That's reasonable, I was just trying to make sure
| |
8 <div style="width:5em; height:2em; overflow:hidden;"> | |
9 | |
10 <div id="spanner" style="-webkit-column-span:all; display:none;">PASS</d iv> | |
11 <span style="background:red;">FAIL</span> | |
12 </div> | |
13 </div> | |
14 <script> | |
15 document.body.offsetTop; | |
16 document.getElementById("spanner").style.display = "block"; | |
17 </script> | |
OLD | NEW |