summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-page/parsing/page-computed.html
blob: 0accba057487570e6a1a1e990c66cd72d0c17155 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://www.w3.org/TR/css-page-3/#using-named-pages">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
<div id="target"></div>
<script>
  test_computed_value("page", "auto");
  test_computed_value("page", "AUTO", "auto");
  test_computed_value("page", "blablabla");
  test_computed_value("page", "BLABLABLA");
  test_computed_value("page", "table");
  test_computed_value("page", "TABLE");
</script>