tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

page-orientation-computed.tentative.html (510B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      3 <link rel="help" href="https://drafts.csswg.org/css-page-3/#page-orientation-prop">
      4 <div id="elm" style="page-orientation:rotate-right;"></div>
      5 <script src="/resources/testharness.js"></script>
      6 <script src="/resources/testharnessreport.js"></script>
      7 <script>
      8  test(()=> {
      9      assert_equals(getComputedStyle(elm).pageOrientation, "");
     10  }, "page-orientation is not a property (only a descriptor)");
     11 </script>