summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-page/page-orientation-on-portrait-001-print.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-page/page-orientation-on-portrait-001-print.html')
-rw-r--r--testing/web-platform/tests/css/css-page/page-orientation-on-portrait-001-print.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-page/page-orientation-on-portrait-001-print.html b/testing/web-platform/tests/css/css-page/page-orientation-on-portrait-001-print.html
new file mode 100644
index 0000000000..5ab3e1edfd
--- /dev/null
+++ b/testing/web-platform/tests/css/css-page/page-orientation-on-portrait-001-print.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+<html>
+ <meta charset="utf-8">
+ <link rel="author" title="Jonathan Watt" href="mailto:jwatt@jwatt.org">
+ <link rel="help" href="https://drafts.csswg.org/css-page/#page-orientation-prop">
+ <meta name="assert" content="page-orientation rotates portrait page to match landscape ref">
+ <link rel="match" href="page-orientation-landscape-ref.html">
+ <meta name="reftest-pages" content="2">
+ <style>
+
+@page second-page {
+ size: portrait;
+ page-orientation: rotate-right;
+}
+div:nth-of-type(2) {
+ page: second-page;
+ break-before: page;
+
+ box-sizing: border-box;
+ width: 2in;
+ height: 4in;
+ border-top: 15px solid orange;
+ border-right: none;
+ border-bottom: 15px solid blue;
+ border-left: none;
+}
+body {
+ margin: 0;
+}
+
+ </style>
+ <body>
+ <div>Page 1. Not compared. Just bumps testing to page 2.</div>
+ <div></div>
+ </body>
+</html>