| Index: third_party/WebKit/LayoutTests/fast/block/float/float-should-dirty-line-even-when-it-doesnt-intersect-it.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/block/float/float-should-dirty-line-even-when-it-doesnt-intersect-it.html b/third_party/WebKit/LayoutTests/fast/block/float/float-should-dirty-line-even-when-it-doesnt-intersect-it.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..78aa2794c48449af4fe1cb839a0493f4548f7d08
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/block/float/float-should-dirty-line-even-when-it-doesnt-intersect-it.html
|
| @@ -0,0 +1,23 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +.float {
|
| + float:left;
|
| + clear:left;
|
| +}
|
| +</style>
|
| +<p> crbug.com/616167: There should be a green square below. </p>
|
| +<div class="float">
|
| + <div style="height: 50px; width: 100px; background-color: green;"></div>
|
| +</div>
|
| +<div class="float" id="float">
|
| + <div style="display: none; height: 100px; width: 50px;" id="test"></div>
|
| +</div>
|
| +<div class="float">
|
| + <div style="height: 50px; width: 100px; background-color: green;"></div>
|
| +</div>
|
| +<br>
|
| +<script>
|
| +document.getElementById("test").style.display = "block";
|
| +document.body.offsetTop;
|
| +document.getElementById("test").style.display = "none";
|
| +</script>
|
|
|