| Index: third_party/WebKit/LayoutTests/fast/block/float/add-float-back-to-anonymous-block-previous.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/block/float/add-float-back-to-anonymous-block-previous.html b/third_party/WebKit/LayoutTests/fast/block/float/add-float-back-to-anonymous-block-previous.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4834b0fb170b28810c263b261f78a2dfa5b41bd7
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/block/float/add-float-back-to-anonymous-block-previous.html
|
| @@ -0,0 +1,21 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +body { margin: 0px; padding; 0px; }
|
| +#div { display:block; width: 50px; height: 50px; background-color: green; }
|
| +.float { width: 50px; height: 50px; background-color: green; float: left; }
|
| +</style>
|
| +<div id="container" style="width: 500px;">
|
| + <div style="height: 50px; width: 50px;"></div>
|
| + <span>X</span>
|
| + <div class="float"></div>
|
| + <div id="div"></div>
|
| + <div id="float" class="float" data-offset-y=50></div>
|
| + <span>X</span>
|
| +</div>
|
| +<p>crbug.com/585064: Two contiguous anonymous blocks with inline content should be merged together. There should be a single green rectangle below.</p>
|
| +<script src="../../../resources/check-layout.js"></script>
|
| +<script>
|
| +document.body.offsetTop;
|
| +document.getElementById("div").style.float = 'left';
|
| +checkLayout("#container");
|
| +</script>
|
|
|