| Index: third_party/WebKit/LayoutTests/printing/fixed-positioned-child-repeats-even-when-html-and-body-are-zero-height.html
|
| diff --git a/third_party/WebKit/LayoutTests/printing/fixed-positioned-child-repeats-even-when-html-and-body-are-zero-height.html b/third_party/WebKit/LayoutTests/printing/fixed-positioned-child-repeats-even-when-html-and-body-are-zero-height.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ddcd8d3505702e030c4d1879a3b5cf78cb6aa668
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/printing/fixed-positioned-child-repeats-even-when-html-and-body-are-zero-height.html
|
| @@ -0,0 +1,15 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +html{height:0}
|
| +.child {position:absolute;top:60px;width:100px; height: 100px; background-color: green; }
|
| +</style>
|
| +<script>
|
| +if (window.testRunner)
|
| + testRunner.setPrinting();
|
| +</script>
|
| +<body style="height: 0px;">
|
| +<p>crbug.com/618230: There should be a green square below.
|
| +<div style="position: fixed;">
|
| + <div class="child"></div>
|
| +</div>
|
| +</body>
|
|
|