mirror of
https://github.com/servo/servo.git
synced 2025-07-11 17:33:47 +01:00
29 lines
1,015 B
HTML
29 lines
1,015 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS Containment Module Level 1: getComputedValue().contain</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-contain/#contain-property">
|
|
<meta name="assert" content="contain computed value is as specified.">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/css/support/computed-testcommon.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="target"></div>
|
|
<script>
|
|
test_computed_value("contain", "none");
|
|
test_computed_value("contain", "strict");
|
|
test_computed_value("contain", "content");
|
|
|
|
test_computed_value("contain", "size");
|
|
test_computed_value("contain", "layout");
|
|
test_computed_value("contain", "style");
|
|
test_computed_value("contain", "paint");
|
|
test_computed_value("contain", "size layout");
|
|
test_computed_value("contain", "style paint");
|
|
test_computed_value("contain", "layout style paint");
|
|
test_computed_value("contain", "size layout style paint");
|
|
</script>
|
|
</body>
|
|
</html>
|