Index: third_party/WebKit/LayoutTests/fast/block/float/add-inline-before-float-and-into-anonymous-block-container.html |
diff --git a/third_party/WebKit/LayoutTests/fast/block/float/add-inline-before-float-and-into-anonymous-block-container.html b/third_party/WebKit/LayoutTests/fast/block/float/add-inline-before-float-and-into-anonymous-block-container.html |
deleted file mode 100644 |
index 1780f6e5895454269997d9402f585af595c63535..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/block/float/add-inline-before-float-and-into-anonymous-block-container.html |
+++ /dev/null |
@@ -1,27 +0,0 @@ |
-<!DOCTYPE html> |
-<style> |
-.block { |
- width: 25px; |
- height: 50px; |
- background-color: green; |
-} |
- |
-.float { |
- width: 25px; |
- height: 50px; |
- background-color: green; |
- float: left; |
-} |
-</style> |
-<p>crbug.com/322039: There should be a green <em>square</em> below.</p> |
-<div> |
- <div></div> |
- <br> |
- <div id="first" class="block"></div> |
- <div class="float"></div> |
-</div> |
-<script> |
- document.body.offsetTop; |
- document.getElementById("first").style.display = "inline-block"; |
-</script> |
- |