mirror of
https://github.com/servo/servo.git
synced 2025-08-24 14:48:21 +01:00
Update web-platform-tests to revision 71c05e71317fec5f71d5575cd636b0a8e3835f9c
This commit is contained in:
parent
91281a4727
commit
9d212c9f3d
26 changed files with 297 additions and 310 deletions
25
tests/wpt/web-platform-tests/css/motion/inheritance.html
Normal file
25
tests/wpt/web-platform-tests/css/motion/inheritance.html
Normal file
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Inheritance of CSS Motion Path properties</title>
|
||||
<link rel="help" href="https://drafts.fxtf.org/motion-1/#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('offset-anchor', 'auto', '2px 3px');
|
||||
assert_not_inherited('offset-distance', '0px', '4px');
|
||||
assert_not_inherited('offset-path', 'none', 'path("M 5 6 H 7")');
|
||||
assert_not_inherited('offset-position', 'auto', '8px 9px');
|
||||
assert_not_inherited('offset-rotate', 'auto 0deg', '90deg');
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue