Index: third_party/WebKit/LayoutTests/fast/block/float/relayout-nested-float-after-line.html |
diff --git a/third_party/WebKit/LayoutTests/fast/block/float/relayout-nested-float-after-line.html b/third_party/WebKit/LayoutTests/fast/block/float/relayout-nested-float-after-line.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..396d127526b60dcf9623fc62dd353e5911dbb136 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/block/float/relayout-nested-float-after-line.html |
@@ -0,0 +1,19 @@ |
+<!DOCTYPE html> |
+<p>The word "BONZER" should be adjacent to the hotpink square.</p> |
+<div style="position:relative; overflow:hidden;"> |
+ |
+ <div style="float:left; width:100%; height:1px;"></div> |
+ <div style="float:left; width:100%;"> |
+ <div id="innerFloat" style="float:left; width:666px; height:20px; background:hotpink;"></div> |
+ <span id="targetSpan">BONZER<br></span> |
+ </div> |
+</div> |
+<script src="../../../resources/testharness.js"></script> |
+<script src="../../../resources/testharnessreport.js"></script> |
+<script> |
+test(() => { |
+ document.body.offsetTop; |
+ innerFloat.style.width = "20px"; |
+ assert_equals(targetSpan.offsetLeft, 20); |
+}, "Resize inner float next to line"); |
+</script> |