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

Side by Side Diff: LayoutTests/fast/multicol/dynamic/remove-inline-and-spanner-after-spanner-foreignObject.html

Issue 1107673004: [New Multicolumn] Prevent SVG foreignObject from becoming a spanner. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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/remove-inline-and-spanner-after-spanner-foreignObject-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 <style>
3 .spanner { -webkit-column-span:all; }
4 </style>
5 <body style="margin:0;">
6 <p>PASS if no crash or assertion failure.</p>
7 <div style="-webkit-column-count:4;">
8 <svg><foreignObject class="spanner"></foreignObject></svg><div id="a" cl ass="spanner">a</div><span id="b">b</span><div class="spanner"></div>
9 </div>
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
13 onload = function() {
14 document.body.offsetTop;
15 document.getElementById('a').style.display = 'none';
16 document.body.offsetTop;
17 document.getElementById('b').style.display = 'none';
18 }
19 </script>
20 </body>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/dynamic/remove-inline-and-spanner-after-spanner-foreignObject-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698