gecko-dev/testing/web-platform/tests/css/css-content/inheritance.html
Synthia Islam 1cd59e6a5d Bug 1583038 [wpt PR 19211] - CSS: Initial value for quotes should be auto, a=testonly
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
2019-09-26 20:26:05 +00:00

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>