mirror of
https://github.com/servo/servo.git
synced 2025-08-10 16:05:43 +01:00
Update web-platform-tests to revision 3adb0f89d80bb92ea1a458b3fbe461f7803549a9
This commit is contained in:
parent
173bfadaa7
commit
f3e7a5cac0
119 changed files with 2706 additions and 282 deletions
|
@ -35,6 +35,56 @@ test(t => {
|
|||
'getAnimations returns no running CSS Transitions');
|
||||
}, 'getAnimations for CSS Transitions');
|
||||
|
||||
test(t => {
|
||||
const div = addDiv(t);
|
||||
|
||||
// Add a couple of transitions
|
||||
div.style.top = '0px';
|
||||
div.style.left = '0px';
|
||||
getComputedStyle(div).transitionProperty;
|
||||
|
||||
div.style.transition = 'all 100s';
|
||||
div.style.top = '100px';
|
||||
div.style.left = '100px';
|
||||
|
||||
var animations = document.getAnimations();
|
||||
assert_equals(animations.length, 2,
|
||||
'getAnimations returns two running CSS Transitions');
|
||||
assert_equals(animations[0].transitionProperty, 'left');
|
||||
assert_equals(animations[1].transitionProperty, 'top');
|
||||
}, 'getAnimations for CSS Transitions sort by property name');
|
||||
|
||||
promise_test(async t => {
|
||||
const div = addDiv(t);
|
||||
|
||||
// Add a couple of transitions
|
||||
div.style.top = '0px';
|
||||
div.style.left = '0px';
|
||||
getComputedStyle(div).transitionProperty;
|
||||
|
||||
div.style.transition = 'all 100s';
|
||||
div.style.top = '100px';
|
||||
div.style.left = '100px';
|
||||
|
||||
var animations = document.getAnimations();
|
||||
assert_equals(animations.length, 2,
|
||||
'getAnimations returns two running CSS Transitions');
|
||||
assert_equals(animations[0].transitionProperty, 'left');
|
||||
assert_equals(animations[1].transitionProperty, 'top');
|
||||
|
||||
await waitForAnimationFrames(2);
|
||||
|
||||
div.style.opacity = '1'
|
||||
div.style.transition = 'all 100s';
|
||||
div.style.opacity = '0'
|
||||
animations = document.getAnimations();
|
||||
assert_equals(animations.length, 3,
|
||||
'getAnimations returns two running CSS Transitions');
|
||||
assert_equals(animations[0].transitionProperty, 'left', '1');
|
||||
assert_equals(animations[1].transitionProperty, 'top', '2');
|
||||
assert_equals(animations[2].transitionProperty, 'opacity', '3');
|
||||
}, 'getAnimations for CSS Transitions sort by transition generation');
|
||||
|
||||
function pseudoTest(description, testMarkerPseudos) {
|
||||
test(t => {
|
||||
// Create two divs with the following arrangement:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue