mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
Update web-platform-tests to revision 6aef6676d2f95c29de17666cc70d61b517939fbf
This commit is contained in:
parent
cd0e7e7ebb
commit
3ebfea9f10
250 changed files with 2846 additions and 702 deletions
|
@ -1,6 +1,6 @@
|
|||
<!doctype html>
|
||||
<meta charset=utf-8>
|
||||
<title>CSSAnimation.getComputedTiming()</title>
|
||||
<title>AnimationEffect.getComputedTiming() for CSS animations</title>
|
||||
<!-- TODO: Add a more specific link for this once it is specified. -->
|
||||
<link rel="help" href="https://drafts.csswg.org/css-animations-2/#cssanimation">
|
||||
<script src="/resources/testharness.js"></script>
|
|
@ -11,7 +11,6 @@
|
|||
to { left: 100px }
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
'use strict';
|
||||
|
@ -39,4 +38,3 @@ test(t => {
|
|||
}, 'Animation name with hex-escape');
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
to { margin-left: 200px }
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
'use strict';
|
||||
|
@ -195,5 +194,3 @@ promise_test(async t => {
|
|||
'descendants');
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
}
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
'use strict';
|
||||
|
@ -129,4 +128,3 @@ promise_test(async t => {
|
|||
'it fires an animationstart event');
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
}
|
||||
@keyframes def {}
|
||||
</style>
|
||||
<body>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
'use strict';
|
||||
|
@ -84,4 +83,3 @@ promise_test(async t => {
|
|||
}, 'finished promise is not reset when animationPlayState is set to running');
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset=utf-8>
|
||||
<title>CSSAnimation.currentTime</title>
|
||||
<!-- TODO: Add a more specific link for this once it is specified. -->
|
||||
<link rel="help" href="https://drafts.csswg.org/css-animations-2/#cssanimation">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="support/testcommon.js"></script>
|
||||
<style>
|
||||
|
||||
.animated-div {
|
||||
|
@ -19,11 +20,6 @@
|
|||
}
|
||||
|
||||
</style>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="support/testcommon.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="log"></div>
|
||||
<script type="text/javascript">
|
||||
|
||||
|
@ -70,5 +66,3 @@ promise_test(async t => {
|
|||
}, 'Setting currentTime to null on a CSS animation throws');
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
<style>
|
||||
@keyframes abc { }
|
||||
</style>
|
||||
<body>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
'use strict';
|
||||
|
@ -25,5 +24,4 @@ test(t => {
|
|||
}, 'Animation.id for CSS Animations');
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
100% { margin-left: 10000px }
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
'use strict';
|
||||
|
@ -169,4 +168,3 @@ promise_test(async t => {
|
|||
}, 'Setting the current time completes a pending pause');
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
<style>
|
||||
@keyframes anim { }
|
||||
</style>
|
||||
<body>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
'use strict';
|
||||
|
@ -54,4 +53,3 @@ test(t => {
|
|||
}, 'Animation returns correct playState when canceled');
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
to { transform: translate(10px) }
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
'use strict';
|
||||
|
@ -97,4 +96,3 @@ promise_test(async t => {
|
|||
}, 'Pausing twice re-uses the same Promise');
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset=utf-8>
|
||||
<title>CSSAnimation.startTime</title>
|
||||
<!-- TODO: Add a more specific link for this once it is specified. -->
|
||||
<link rel="help" href="https://drafts.csswg.org/css-animations-2/#cssanimation">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="support/testcommon.js"></script>
|
||||
<style>
|
||||
|
||||
.animated-div {
|
||||
|
@ -19,11 +20,6 @@
|
|||
}
|
||||
|
||||
</style>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="support/testcommon.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="log"></div>
|
||||
<script type="text/javascript">
|
||||
|
||||
|
@ -71,5 +67,3 @@ promise_test(async t => {
|
|||
}, 'Seeking a CSS animation using the start time dispatches animation events');
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
content: '';
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
'use strict';
|
||||
|
@ -74,4 +73,3 @@ test(t => {
|
|||
'animations in the expected order');
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
content: ''
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
'use strict';
|
||||
|
@ -283,4 +282,3 @@ test(t => {
|
|||
'after sorting');
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
|
|
@ -14,7 +14,6 @@ Element.getAnimations() - Dynamic changes to the list of CSS animations
|
|||
}
|
||||
@keyframes anim2 { }
|
||||
</style>
|
||||
<body>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
'use strict';
|
||||
|
@ -162,4 +161,3 @@ promise_test(async t => {
|
|||
}, 'Animation state is preserved when interleaving animations in list');
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
|
|
@ -24,7 +24,6 @@
|
|||
}
|
||||
@keyframes empty { }
|
||||
</style>
|
||||
<body>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
'use strict';
|
||||
|
@ -446,4 +445,3 @@ test(t => {
|
|||
+ ' from all the descendants');
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
content: ''
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
'use strict';
|
||||
|
@ -62,4 +61,3 @@ test(t => {
|
|||
'CSSPseudoElement object as that from the CSS generated animation');
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
to { margin-left: 100px; }
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
'use strict';
|
||||
|
@ -419,5 +418,3 @@ promise_test(async t => {
|
|||
}, 'Cancel the animation after clearing the target effect.');
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
to { margin-left: 100px; }
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<div id="log"></div>
|
||||
<script type='text/javascript'>
|
||||
'use strict';
|
||||
|
@ -160,5 +159,3 @@ promise_test(async t => {
|
|||
}, 'Test start and end events are sorted correctly when fired simultaneously');
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue