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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/block/float/clear-intruding-floats-when-moving-to-inline-parent-2.html

Issue 1495033002: Clear intruding floats when moving child to inline parent. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@558405-5
Patch Set: Updated Created 5 years 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 <script src="../../../resources/js-test.js"></script>
3 <style>
4 .float {
5 float: right;
6 width: 100px;
7 height: 100px;
8 }
9 </style>
10 <div>
11 <div></div>
12 <span></span>
13 <div class="float"></div>
14 <div id="block-flow-container">
15 <div></div>
16 </div>
17 </div>
18 <script>
19 document.body.offsetTop;
20 document.getElementById("block-flow-container").style.position = 'absolute';
21 testPassed("crbug.com/562208: Clear intruding floats when moving child to in line parent. Passes if it doesn't crash.");
22 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698