chromium/third_party/blink/web_tests/printing/fixed-positioned-child-shouldnt-print.html

<!DOCTYPE html>
<style>
html{height:100%}
.child {position:absolute;top:-600px;width:100px; height: 100px; background-color: red; }
</style>
<script>
if (window.testRunner)
        testRunner.setPrinting();
</script>
<p>crbug.com/617533: There should be no red square below.
<div style="position: fixed;">
    <div class="child"></div>
</div>