blob: 36ee263f9726136ebad95ac89a034fbb80fffa53 [file] [log] [blame]
<!doctype html>
<meta charset="utf-8">
<title>CSS Containment Module: parsing contain with invalid values</title>
<!-- Merge these tests into upstream wpt test if/when added to the css-contain spec -->
<link rel="help" href="https://drafts.csswg.org/css-contain/#contain-property">
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/1031">
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/5796">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
<script>
test_invalid_value("contain", "size inline-size");
test_invalid_value("contain", "size block-size");
test_invalid_value("contain", "block-size block-size");
test_invalid_value("contain", "inline-size inline-size");
</script>