summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-page/parsing/page-orientation-computed.tentative.html
blob: c9dd155f8cffe70cbce8bd61b015e433557f44f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
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>