summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-page/parsing/page-orientation-computed.tentative.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-page/parsing/page-orientation-computed.tentative.html')
-rw-r--r--testing/web-platform/tests/css/css-page/parsing/page-orientation-computed.tentative.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-page/parsing/page-orientation-computed.tentative.html b/testing/web-platform/tests/css/css-page/parsing/page-orientation-computed.tentative.html
new file mode 100644
index 0000000000..c9dd155f8c
--- /dev/null
+++ b/testing/web-platform/tests/css/css-page/parsing/page-orientation-computed.tentative.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
+<link rel="help" href="https://drafts.csswg.org/css-page-3/#page-orientation-prop">
+<div id="elm" style="page-orientation:rotate-right;"></div>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+ test(()=> {
+ assert_equals(getComputedStyle(elm).pageOrientation, "");
+ }, "page-orientation is not a property (only a descriptor)");
+</script>
+