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

Side by Side Diff: LayoutTests/fast/multicol/dynamic/insert-spanner-after-abspos-subtree-crash.html

Issue 1149923009: Be sure to skip objects inside out-of-flow subtrees. (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/insert-spanner-after-abspos-subtree-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>Insert a spanner into a multicol, before regular content, after an absolutely positioned subtree.</p>
3 <p>PASS if no crash or assertion failure.</p>
4 <div style="-webkit-columns:3;">
5 <div style="-webkit-column-span:all;"></div>
6 <div style="position:absolute;">
7 <div></div>
8 </div>
9 <div id="spanner" style="display:none; -webkit-column-span:all;"></div>
10 <div></div>
11 <div style="-webkit-column-span:all;"></div>
12 <div></div>
13 </div>
14 <script>
15 if (window.testRunner)
16 testRunner.dumpAsText();
17 document.body.offsetTop;
18 document.getElementById("spanner").style.display = "block";
19 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/dynamic/insert-spanner-after-abspos-subtree-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698