gecko-dev/testing/web-platform/tests/css/css-will-change/inheritance.html
Eric Willigers cb9e103843 Bug 1550958 [wpt PR 16681] - CSS: parsing tests for will-change, a=testonly
Automatic update from web-platform-tests
CSS: parsing tests for will-change

Web Platform Tests for the will-change property.
https://drafts.csswg.org/css-will-change/#will-change

Change-Id: Iaa5c2d6d40fed68a45a8f46cdf762d29882156a8
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1595196
Commit-Queue: Eric Willigers <ericwilligers@chromium.org>
Reviewed-by: Rune Lillesveen <futhark@chromium.org>
Cr-Commit-Position: refs/heads/master@{#656766}

--

wpt-commits: 8fe615c71a0c213221a911ce032f3ab70076e645
wpt-pr: 16681
2019-06-05 10:29:03 +01:00

21 lines
647 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Inheritance of CSS will-change property</title>
<link rel="help" href="https://drafts.csswg.org/css-will-change/#property-index">
<meta name="assert" content="will-change does not inherit.">
<meta name="assert" content="will-change has initial value auto.">
<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('will-change', 'auto', 'transform');
</script>
</body>
</html>