mirror of
https://github.com/servo/servo.git
synced 2025-06-29 11:33:39 +01:00
31 lines
1.3 KiB
HTML
31 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Inheritance of CSS Inline Layout properties</title>
|
|
<link rel="author" title="Eric Willigers" href="mailto:ericwilligers@chromium.org">
|
|
<link rel="help" href="https://drafts.csswg.org/css-inline-3/#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="container">
|
|
<div id="target"></div>
|
|
</div>
|
|
<script>
|
|
assert_not_inherited('alignment-baseline', 'baseline', 'central');
|
|
assert_not_inherited('baseline-shift', '0px', '10px');
|
|
assert_inherited('dominant-baseline', 'auto', 'central');
|
|
assert_not_inherited('initial-letters', 'normal', '2 3');
|
|
assert_inherited('initial-letters-align', 'alphabetic', 'hanging');
|
|
assert_inherited('initial-letters-wrap', 'none', 'grid');
|
|
assert_not_inherited('initial-sizing', 'normal', 'stretch');
|
|
// https://www.w3.org/TR/CSS2/visudet.html#propdef-line-height
|
|
assert_inherited('line-height', 'normal', '20px');
|
|
assert_not_inherited('vertical-align', 'baseline', '10px');
|
|
</script>
|
|
</body>
|
|
</html>
|