| 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-after-anonymous-block.html b/third_party/WebKit/LayoutTests/fast/block/float/add-inline-before-float-and-into-anonymous-block-container.html
|
| similarity index 66%
|
| copy from third_party/WebKit/LayoutTests/fast/block/float/add-inline-before-float-and-after-anonymous-block.html
|
| copy to third_party/WebKit/LayoutTests/fast/block/float/add-inline-before-float-and-into-anonymous-block-container.html
|
| index dc3cda65299bc30dbc6727858fa9af30ebbecd38..1780f6e5895454269997d9402f585af595c63535 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/block/float/add-inline-before-float-and-after-anonymous-block.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/block/float/add-inline-before-float-and-into-anonymous-block-container.html
|
| @@ -1,27 +1,27 @@
|
| <!DOCTYPE html>
|
| <style>
|
| -.float
|
| -{
|
| - float: left;
|
| +.block {
|
| width: 25px;
|
| height: 50px;
|
| background-color: green;
|
| }
|
| -.inline-block
|
| -{
|
| +
|
| +.float {
|
| width: 25px;
|
| height: 50px;
|
| background-color: green;
|
| - display: inline-block;
|
| + float: left;
|
| }
|
| </style>
|
| -<p>crbug.com/523282: There should be a green <em>square</em> below.</p>
|
| +<p>crbug.com/322039: There should be a green <em>square</em> below.</p>
|
| <div>
|
| - <div class="inline-block"></div>
|
| - <div id="first"></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>
|
| +
|
|
|