Update web-platform-tests to revision 71c05e71317fec5f71d5575cd636b0a8e3835f9c

This commit is contained in:
WPT Sync Bot 2018-10-27 21:54:50 -04:00
parent 91281a4727
commit 9d212c9f3d
26 changed files with 297 additions and 310 deletions

View 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>