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

Side by Side Diff: LayoutTests/fast/multicol/multicol-becomes-abspos-crash.html

Issue 1149333003: Ignore style changes on text node flowthread descendants. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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 <style>
3 .c5:first-child { position: absolute; }
4 </style>
5 <div id="container">
6 <span id="dummy"></span>
7 <div class="c5" style="-webkit-column-count:3;">PASS if no crash or assertio n failure.</div>
8 </div>
9 <script>
10 if (window.testRunner)
11 testRunner.dumpAsText();
12 document.body.offsetTop;
13 document.getElementById("container").removeChild(document.getElementById("du mmy"));
14 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698