Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-page/parsing/page-computed.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<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>