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

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

Issue 1553853002: Revert of Re-land 'Fold out-of-flow objects into anonymous blocks when removing children' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@322039-RemoveTestExpectations
Patch Set: 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/block/float/add-float-after-anonymous-block-being-destroyed-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 .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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/block/float/add-float-after-anonymous-block-being-destroyed-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698