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

Side by Side Diff: LayoutTests/fast/multicol/dynamic/block-with-abspos-video-becomes-multicol-crash.html

Issue 1156303012: Use the container() chain when locating the containing flow thread. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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/block-with-abspos-video-becomes-multicol-crash-expected.txt » ('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>Turn a block with an absolutely positioned video into a multicol container, t hen remove the video.</p>
3 <p>PASS if no crash or assertion failure.</p>
4 <div id="parent">
5 <video id="child" style="position:absolute;"></video>
6 </div>
7
8 <script>
9 if (window.testRunner)
10 testRunner.dumpAsText();
11 document.body.offsetTop;
12 document.getElementById("parent").style.webkitColumns = "2";
13 document.body.offsetTop;
14 document.getElementById("child").style.display = "none";
15 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/dynamic/block-with-abspos-video-becomes-multicol-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698