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

Side by Side Diff: LayoutTests/fast/multicol/dynamic/multicol-with-abspos-svg-with-foreignobject-with-multicol-crash.html

Issue 1235133004: Use LayoutObject to locate the flow thread. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <p>PASS if no crash.</div>
3 <div id="mc1" style="-webkit-columns:2;">
4 <svg style="position:absolute;">
5 <foreignObject>
6 <div id="inner" style="position:absolute;">
7 <div id="mc2" style="-webkit-columns:2;">
8 <div style="position:absolute;"></div>
9 </div>
10 </div>
11 </foreignObject>
12 </svg>
13 </div>
14 <script>
15 if (window.testRunner)
16 testRunner.dumpAsText();
17 document.body.offsetTop;
18 document.getElementById("mc2").style.WebkitColumns = "auto";
19 document.getElementById("mc1").style.WebkitColumns = "auto";
20 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698