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

Side by Side Diff: LayoutTests/fast/dynamic/static-to-relative-with-absolute-child-in-multicol.html

Issue 1218023004: Fix a regression when position:static with absolute child changed to relative (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: mstensho@ review in #10, and test from #11 Created 5 years, 5 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
« no previous file with comments | « no previous file | LayoutTests/fast/dynamic/static-to-relative-with-absolute-child-in-multicol-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>The word "PASS" should be seen below.</p>
3 <div id="outer" style="position:relative; height:200px;">
4 <div style="-webkit-columns:4; -webkit-column-gap:0; width:4em;">
5 <div id="newContainingBlock">
6 <div style="position:absolute; top:0; left:0; right:0; bottom:0;">
7 P<br>
8 A<br>
9 S<br>
10 S<br>
11 </div>
12 <br>
13 <br>
14 <br>
15 <br>
16 </div>
17 </div>
18 </div>
19 <script>
20 document.body.offsetTop;
21 document.getElementById("newContainingBlock").style.position = "relative";
22 document.getElementById("outer").style.height = "201px";
23 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dynamic/static-to-relative-with-absolute-child-in-multicol-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698