mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Update web-platform-tests to revision 0b22439430b6d8d9a6d43a0908e86c0366f207c0
This commit is contained in:
parent
39ec04a065
commit
c8e806d0ef
93 changed files with 2118 additions and 597 deletions
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue