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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/block/float/add-float-after-anonymous-block-being-destroyed.html

Issue 1543283002: Re-land 'Fold out-of-flow objects into anonymous blocks when removing children' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated Created 4 years, 11 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .float { float: right; }
4 .span { content: ""; }
5 </style>
6 <body>
7 <p>crbug.com/322039: Don't attempt to fold a float into an anonymous block i f it is being destroyed. The test should not crash.</p>
8 <span id="span" class="span"><div></div></span>
9 <div id="div"></div>
10 <div class="float"></div>
11 </body>
12 <script>
13 if (window.testRunner)
14 testRunner.dumpAsText();
15 document.body.offsetTop;
16 span.setAttribute('class', '');
17 div.setAttribute('class', 'float');
18 </script>
19
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698