Chromium Code Reviews

Side by Side Diff: third_party/WebKit/LayoutTests/fast/multicol/dynamic/remove-abspos-next-to-spanner.html

Issue 1691053002: Cannot do simplified layout on an object that contains a column-spanner. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/multicol/dynamic/remove-abspos-next-to-spanner-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>There should be a blue square below, and no red.</p>
3 <div style="-webkit-columns:2; width:100px; -webkit-column-gap:0; background:red ;">
4 <div id="block" style="height:20px; background:blue;"></div>
5 <div>
6 <div style="position:relative;">
7 <div style="-webkit-column-span:all;"></div>
8 <div id="abspos" style="position:absolute;"></div>
9 <div></div>
10 </div>
11 </div>
12 </div>
13 <script>
14 document.body.offsetTop;
15 document.getElementById("block").style.height = "200px";
16 document.getElementById("abspos").style.display = "none";
17 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/multicol/dynamic/remove-abspos-next-to-spanner-expected.html » ('j') | no next file with comments »

Powered by Google App Engine