mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 05:08:36 +02:00
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
21 lines
647 B
HTML
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>
|