Index: third_party/WebKit/LayoutTests/fast/block/block-image-becomes-float.html |
diff --git a/third_party/WebKit/LayoutTests/fast/block/block-image-becomes-float.html b/third_party/WebKit/LayoutTests/fast/block/block-image-becomes-float.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b22cad9aec19e3e5ed5aa1f488bc5fd4af8e3a6a |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/block/block-image-becomes-float.html |
@@ -0,0 +1,12 @@ |
+<!DOCTYPE html> |
+<style> |
+ #elm { display:block; width:10em; height:10em; visibility:hidden; } |
+</style> |
+<p>The word "PASS" should be seen below.</p> |
+<div> |
+ P<img id="elm">ASS |
+</div> |
+<script> |
+ document.body.offsetTop; |
+ document.getElementById("elm").style.float = "left"; |
+</script> |