| Index: third_party/WebKit/LayoutTests/printing/iso-page-in-points.html
|
| diff --git a/third_party/WebKit/LayoutTests/printing/iso-page-in-points.html b/third_party/WebKit/LayoutTests/printing/iso-page-in-points.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..bf8bbc90b6d3106d5cf82d7fdbe67d805b11fa95
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/printing/iso-page-in-points.html
|
| @@ -0,0 +1,21 @@
|
| +<!DOCTYPE html>
|
| +<script src="resources/paged-media-test-utils.js"></script>
|
| +<style>
|
| + body,html{margin:0};
|
| + div{background:red};
|
| + div{height:842pt;width:595pt};
|
| + @page{margin:0};
|
| +</style>
|
| +<div></div>
|
| +<script>
|
| +
|
| + if (window.testRunner)
|
| + testRunner.dumpAsText();
|
| +
|
| + function test()
|
| + {
|
| + numberOfPagesShouldBe(1);
|
| + }
|
| +
|
| + runPrintingTest(test);
|
| +</script>
|
|
|