gecko-dev/testing/web-platform/tests/css/css-page/page-rule-declarations-002.html
Felipe Erias 0d11553430 Bug 1620148 [wpt PR 22099] - Use test() correctly in css-page tests, a=testonly
Automatic update from web-platform-tests
Use test() correctly in css-page tests

Update css/css-page/page-rule-declarations-* to use the
test() method properly to test one feature at a time.

--

wpt-commits: 69345f1df225843dcda149d4928ae9e7a74f792f
wpt-pr: 22099
2020-03-06 22:30:07 +00:00

34 lines
1.1 KiB
HTML

<!doctype html>
<meta charset="utf-8">
<title>CSS Paged Media: parsing page properties inside HTML elements</title>
<link rel="author" title="Felipe Erias Morandeira" href="mailto:felipeerias@gmail.com"/>
<link rel="help" href="https://drafts.csswg.org/css-page/#using-named-pages"/>
<meta name="assert" content="Test that page properties of HTML elements are parsed correctly.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
<style type="text/css">
@page {
size: a4;
}
@page small_page {
size: a5 portrait;
}
@page large_page {
size: a3 landscape;
}
</style>
<script type="text/javascript">
test_valid_value("page", "auto");
test_valid_value("page", "small_page");
test_valid_value("page", "large_page");
test_invalid_value("page", "auto small_page");
test_invalid_value("page", "large_page auto");
test_invalid_value("page", "small_page large_page");
test_invalid_value("page", "1cm");
</script>