Index: third_party/WebKit/LayoutTests/printing/block-with-overflow-in-bottom-aligned-fixedpos.html |
diff --git a/third_party/WebKit/LayoutTests/printing/block-with-overflow-in-bottom-aligned-fixedpos.html b/third_party/WebKit/LayoutTests/printing/block-with-overflow-in-bottom-aligned-fixedpos.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..085c371a81e4447f6c1f9af0a39b68d442d28071 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/printing/block-with-overflow-in-bottom-aligned-fixedpos.html |
@@ -0,0 +1,14 @@ |
+<!DOCTYPE html> |
+<script> |
+if (window.testRunner) |
+ testRunner.setPrinting(); |
+if (window.internals) |
+ internals.settings.setShouldPrintBackgrounds(true); |
+</script> |
+<p>The word "PASS" should be seen at the bottom of the page, and no red should be seen.</p> |
+<div style="position:fixed; left:0; width:100%; bottom:0; height:2em; background:red;"> |
+ <div style="background:white;"> |
+ <span style="vertical-align:top;">PASS</span> |
+ <span style="line-height:3em;"> </span> |
+ </div> |
+</div> |