Update web-platform-tests to revision 0b22439430b6d8d9a6d43a0908e86c0366f207c0

This commit is contained in:
WPT Sync Bot 2019-07-06 10:25:38 +00:00
parent 39ec04a065
commit c8e806d0ef
93 changed files with 2118 additions and 597 deletions

View file

@ -0,0 +1,30 @@
<!DOCTYPE html>
<title>Worklet Animation's animator name should be accessible via animatorName property</title>
<link rel="help" href="https://drafts.css-houdini.org/css-animationworklet/">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="common.js"></script>
<script id="test_animator" type="text/worklet">
class NoopAnimator {
animate(currentTime, effect) {}
}
registerAnimator('Tokyo', NoopAnimator);
registerAnimator('دزفول', NoopAnimator);
</script>
<body></body>
<script>
promise_test(async t => {
await runInAnimationWorklet(document.getElementById('test_animator').textContent);
// An ascii name and a non-ascii one.
for (let name of ['Tokyo', 'دزفول']) {
const animation = new WorkletAnimation(name, new KeyframeEffect(document.body, {}));
assert_equals(name, animation.animatorName);
}
}, 'Verify that animatorName matches passed name');
</script>