summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-sizing/parsing/box-sizing-invalid.html
blob: 02d57797eac70caf1d7c1c5186079cf2ca902de9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Intrinsic & Extrinsic Sizing Test: parsing box-sizing with invalid values</title>
<link rel="help" href="https://drafts.csswg.org/css-sizing-3/#propdef-box-sizing">
<meta name="assert" content="box-sizing supports only the grammar 'content-box | border-box'.">
<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("box-sizing", "margin-box");
test_invalid_value("box-sizing", "padding-box");
test_invalid_value("box-sizing", "fill-box");
test_invalid_value("box-sizing", "stroke-box");
test_invalid_value("box-sizing", "view-box");

test_invalid_value("box-sizing", "content-box border-box");
test_invalid_value("box-sizing", "content-box, border-box");
</script>
</body>
</html>