mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
Automatic update from web-platform-tests CSS: Initial value for quotes should be auto The spec for 'quotes' recently changed so that the initial value is no longer implementation dependent. Added inheritance.html and inheritance-expected.txt according to latest spec Bug: 990557 Change-Id: I7db4a0fd2fed56c0b9c95784382f333c666d9fb1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1816253 Commit-Queue: Eric Willigers <ericwilligers@chromium.org> Reviewed-by: Eric Willigers <ericwilligers@chromium.org> Cr-Commit-Position: refs/heads/master@{#699092} -- wpt-commits: 516681caa11bc5a981a276fa07afc28cb5b6c8ed wpt-pr: 19211
24 lines
856 B
HTML
24 lines
856 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Inheritance of CSS Contents properties</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-content/#propdef-quotes">
|
|
<link rel="help" href="https://drafts.csswg.org/css-content/#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_inherited('quotes', 'auto', 'none');
|
|
assert_not_inherited('bookmark-level', 'none', '1');
|
|
assert_not_inherited('bookmark-state', 'open', 'closed');
|
|
</script>
|
|
</body>
|
|
</html>
|