Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(199)

Side by Side Diff: LayoutTests/fast/multicol/dynamic/add-spanner-inside-overflow-hidden.html

Issue 1271513004: Disallow relayout roots inside multicol. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Code review - more tests - put everything in fast/multicol/dynamic/ Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/dynamic/add-spanner-inside-overflow-hidden-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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;">
8 <div style="width:5em; height:2em; overflow:hidden;">
9 &nbsp;
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>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/dynamic/add-spanner-inside-overflow-hidden-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698