Bug 1527273 [wpt PR 15312] - [css-box] Inheritance, initial values, a=testonly

Automatic update from web-platform-tests
[css-box] Inheritance, initial values (#15312)

Test that CSS Box Model properties do not inherit.
https://drafts.csswg.org/css-box-3/#property-index
--

wpt-commits: 35bd69423b10a361a969139ba0271896dced9691
wpt-pr: 15312
This commit is contained in:
Eric Willigers 2019-02-19 14:39:20 +00:00 коммит произвёл James Graham
Родитель bc6a8d707f
Коммит a8ccd4ad42
1 изменённых файлов: 29 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Inheritance of CSS Box Model properties</title>
<link rel="help" href="https://drafts.csswg.org/css-box-3/#property-index">
<meta name="assert" content="Properties do not inherit.">
<meta name="assert" content="length-percentage properties have initial value 0.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/inheritance-testcommon.js"></script>
</head>
<body>
<div id="container">
<div id="target"></div>
</div>
<script>
assert_not_inherited('margin-bottom', '0px', '10px');
assert_not_inherited('margin-left', '0px', '10px');
assert_not_inherited('margin-right', '0px', '10px');
assert_not_inherited('margin-top', '0px', '10px');
assert_not_inherited('margin-trim', 'none', 'all');
assert_not_inherited('padding-bottom', '0px', '10px');
assert_not_inherited('padding-left', '0px', '10px');
assert_not_inherited('padding-right', '0px', '10px');
assert_not_inherited('padding-top', '0px', '10px');
</script>
</body>
</html>