mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision d8b8e0b8efe993a37404d6c6fc75e16fdc16b7d8
This commit is contained in:
parent
abc0f50d20
commit
e07315e6af
221 changed files with 7334 additions and 774 deletions
47
tests/wpt/web-platform-tests/css/css-ui/inheritance.html
Normal file
47
tests/wpt/web-platform-tests/css/css-ui/inheritance.html
Normal file
|
@ -0,0 +1,47 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Inheritance of CSS Basic User Interface properties</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-ui/#property-index">
|
||||
<meta name="assert" content="Properties inherit or not according to the spec.">
|
||||
<meta name="assert" content="Properties have initial values according to the spec.">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="/css/support/inheritance-testcommon.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="reference"></div>
|
||||
<div id="container">
|
||||
<div id="target"></div>
|
||||
</div>
|
||||
<style>
|
||||
#reference {
|
||||
border-style: dotted; /* Avoid border-top-width computed style 0 */
|
||||
border-top-width: medium;
|
||||
}
|
||||
|
||||
#container, #target {
|
||||
outline-style: dotted; /* Avoid outline-width computed style 0 */
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
const mediumWidth = getComputedStyle(reference).borderTopWidth; // e.g. 3px
|
||||
|
||||
assert_not_inherited('appearance', 'auto', 'none');
|
||||
assert_inherited('caret-color', 'auto', 'rgba(42, 53, 64, 0.75)');
|
||||
assert_inherited('caret-shape', 'auto', 'bar');
|
||||
assert_inherited('cursor', 'auto', 'pointer');
|
||||
assert_not_inherited('nav-down', 'auto', '#foo');
|
||||
assert_not_inherited('nav-left', 'auto', '#foo');
|
||||
assert_not_inherited('nav-right', 'auto', '#foo');
|
||||
assert_not_inherited('nav-up', 'auto', '#foo');
|
||||
assert_not_inherited('outline-color', 'invert', 'rgba(42, 53, 64, 0.75)');
|
||||
assert_not_inherited('outline-offset', '0px', '10px');
|
||||
assert_not_inherited('outline-style', 'none', 'auto');
|
||||
assert_not_inherited('outline-width', mediumWidth, '10px');
|
||||
assert_not_inherited('resize', 'none', 'vertical');
|
||||
assert_not_inherited('user-select', 'auto', 'none');
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue