mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 21:58:41 +02:00
Automatic update from web-platform-testsTest inheritance of CSS Inline Layout properties (#12593) * Test inheritance of CSS Inline Layout properties * Test initial values of Inline Layout properties Check that properties in https://drafts.csswg.org/css-inline-3/#property-index inherit or not, as per spec. e.g. dominant-baseline inherits https://github.com/w3c/csswg-drafts/issues/2926 Added META.yml for CSS Inline Layout -- wpt-commits: 677dfdd2337fd9b2cf50b371e5be7600f73a3a99 wpt-pr: 12593
29 lines
1.2 KiB
HTML
29 lines
1.2 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', 'normal', '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');
|
|
assert_not_inherited('vertical-align', 'baseline', '10px');
|
|
</script>
|
|
</body>
|
|
</html>
|