mirror of
https://github.com/servo/servo.git
synced 2025-07-01 20:43:39 +01:00
20 lines
749 B
HTML
20 lines
749 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS Containment Module Level 1: parsing contain with invalid values</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-contain/#contain-property">
|
|
<meta name="assert" content="contain supports only the grammar 'none | strict | content | [ size || layout || style || paint ]'.">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/css/support/parsing-testcommon.js"></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
test_invalid_value("contain", "auto");
|
|
test_invalid_value("contain", "strict content");
|
|
test_invalid_value("contain", "size layout size");
|
|
test_invalid_value("contain", "paint content");
|
|
</script>
|
|
</body>
|
|
</html>
|