From 43a97878ce14b72f0981164f87f2e35e14151312 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:22:09 +0200 Subject: Adding upstream version 110.0.1. Signed-off-by: Daniel Baumann --- .../Animatable/animate-no-browsing-context.html | 107 ++++ .../interfaces/Animatable/animate.html | 346 ++++++++++++ .../Animatable/getAnimations-iframe.html | 51 ++ .../interfaces/Animatable/getAnimations.html | 355 ++++++++++++ .../interfaces/Animation/cancel.html | 133 +++++ .../interfaces/Animation/commitStyles-crash.html | 26 + .../Animation/commitStyles-svg-crash.html | 12 + .../interfaces/Animation/commitStyles.html | 577 ++++++++++++++++++++ .../interfaces/Animation/constructor.html | 113 ++++ .../interfaces/Animation/effect.html | 42 ++ .../interfaces/Animation/finished.html | 416 ++++++++++++++ .../web-animations/interfaces/Animation/id.html | 28 + .../interfaces/Animation/oncancel.html | 33 ++ .../interfaces/Animation/onfinish.html | 119 ++++ .../interfaces/Animation/onremove.html | 58 ++ .../web-animations/interfaces/Animation/pause.html | 98 ++++ .../interfaces/Animation/pending.html | 55 ++ .../interfaces/Animation/persist.html | 40 ++ .../web-animations/interfaces/Animation/play.html | 34 ++ .../web-animations/interfaces/Animation/ready.html | 78 +++ .../interfaces/Animation/startTime.html | 55 ++ .../interfaces/Animation/style-change-events.html | 371 +++++++++++++ .../AnimationEffect/getComputedTiming.html | 214 ++++++++ .../interfaces/AnimationEffect/updateTiming.html | 475 ++++++++++++++++ .../AnimationPlaybackEvent/constructor.html | 30 + .../interfaces/Document/timeline.html | 23 + .../DocumentOrShadowRoot/getAnimations.html | 234 ++++++++ .../interfaces/DocumentTimeline/constructor.html | 43 ++ .../DocumentTimeline/style-change-events.html | 92 ++++ .../interfaces/KeyframeEffect/composite.html | 47 ++ .../interfaces/KeyframeEffect/constructor.html | 195 +++++++ .../KeyframeEffect/copy-constructor.html | 93 ++++ .../interfaces/KeyframeEffect/getKeyframes.html | 25 + .../KeyframeEffect/iterationComposite.html | 36 ++ .../processing-a-keyframes-argument-001.html | 602 +++++++++++++++++++++ .../processing-a-keyframes-argument-002.html | 125 +++++ .../interfaces/KeyframeEffect/setKeyframes.html | 55 ++ .../KeyframeEffect/style-change-events.html | 242 +++++++++ .../interfaces/KeyframeEffect/target.html | 266 +++++++++ 39 files changed, 5944 insertions(+) create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animatable/animate-no-browsing-context.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animatable/animate.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animatable/getAnimations-iframe.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animatable/getAnimations.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/cancel.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/commitStyles-crash.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/commitStyles-svg-crash.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/commitStyles.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/constructor.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/effect.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/finished.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/id.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/oncancel.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/onfinish.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/onremove.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/pause.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/pending.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/persist.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/play.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/ready.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/startTime.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/style-change-events.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/AnimationEffect/getComputedTiming.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/AnimationEffect/updateTiming.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/AnimationPlaybackEvent/constructor.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Document/timeline.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/DocumentOrShadowRoot/getAnimations.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/DocumentTimeline/constructor.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/DocumentTimeline/style-change-events.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/composite.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/constructor.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/copy-constructor.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/getKeyframes.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/iterationComposite.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/processing-a-keyframes-argument-001.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/processing-a-keyframes-argument-002.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/setKeyframes.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/style-change-events.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/target.html (limited to 'testing/web-platform/tests/web-animations/interfaces') diff --git a/testing/web-platform/tests/web-animations/interfaces/Animatable/animate-no-browsing-context.html b/testing/web-platform/tests/web-animations/interfaces/Animatable/animate-no-browsing-context.html new file mode 100644 index 0000000000..61a7502a98 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animatable/animate-no-browsing-context.html @@ -0,0 +1,107 @@ + + +Animatable.animate in combination with elements in documents + without a browsing context + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animatable/animate.html b/testing/web-platform/tests/web-animations/interfaces/Animatable/animate.html new file mode 100644 index 0000000000..dad633ba9a --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animatable/animate.html @@ -0,0 +1,346 @@ + + +Animatable.animate + + + + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animatable/getAnimations-iframe.html b/testing/web-platform/tests/web-animations/interfaces/Animatable/getAnimations-iframe.html new file mode 100644 index 0000000000..1851878c41 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animatable/getAnimations-iframe.html @@ -0,0 +1,51 @@ + +getAnimations in dirty iframe + + + + + + + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animatable/getAnimations.html b/testing/web-platform/tests/web-animations/interfaces/Animatable/getAnimations.html new file mode 100644 index 0000000000..fd8719299d --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animatable/getAnimations.html @@ -0,0 +1,355 @@ + + +Animatable.getAnimations + + + + + + + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/cancel.html b/testing/web-platform/tests/web-animations/interfaces/Animation/cancel.html new file mode 100644 index 0000000000..a7da9755dd --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/cancel.html @@ -0,0 +1,133 @@ + + +Animation.cancel + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/commitStyles-crash.html b/testing/web-platform/tests/web-animations/interfaces/Animation/commitStyles-crash.html new file mode 100644 index 0000000000..063fe5a4eb --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/commitStyles-crash.html @@ -0,0 +1,26 @@ + + + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/commitStyles-svg-crash.html b/testing/web-platform/tests/web-animations/interfaces/Animation/commitStyles-svg-crash.html new file mode 100644 index 0000000000..7fc1fef9ce --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/commitStyles-svg-crash.html @@ -0,0 +1,12 @@ + + + + + + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/commitStyles.html b/testing/web-platform/tests/web-animations/interfaces/Animation/commitStyles.html new file mode 100644 index 0000000000..9a7dbea8b8 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/commitStyles.html @@ -0,0 +1,577 @@ + + +Animation.commitStyles + + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/constructor.html b/testing/web-platform/tests/web-animations/interfaces/Animation/constructor.html new file mode 100644 index 0000000000..d599fd72ea --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/constructor.html @@ -0,0 +1,113 @@ + + +Animation constructor + + + + + +
+
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/effect.html b/testing/web-platform/tests/web-animations/interfaces/Animation/effect.html new file mode 100644 index 0000000000..cb8bc09c36 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/effect.html @@ -0,0 +1,42 @@ + + +Animation.effect + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/finished.html b/testing/web-platform/tests/web-animations/interfaces/Animation/finished.html new file mode 100644 index 0000000000..bee4fd8fb7 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/finished.html @@ -0,0 +1,416 @@ + + +Animation.finished + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/id.html b/testing/web-platform/tests/web-animations/interfaces/Animation/id.html new file mode 100644 index 0000000000..5b9586bfaf --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/id.html @@ -0,0 +1,28 @@ + + +Animation.id + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/oncancel.html b/testing/web-platform/tests/web-animations/interfaces/Animation/oncancel.html new file mode 100644 index 0000000000..d539119609 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/oncancel.html @@ -0,0 +1,33 @@ + + +Animation.oncancel + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/onfinish.html b/testing/web-platform/tests/web-animations/interfaces/Animation/onfinish.html new file mode 100644 index 0000000000..b58fea0362 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/onfinish.html @@ -0,0 +1,119 @@ + + +Animation.onfinish + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/onremove.html b/testing/web-platform/tests/web-animations/interfaces/Animation/onremove.html new file mode 100644 index 0000000000..1a41a3d21c --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/onremove.html @@ -0,0 +1,58 @@ + + +Animation.onremove + + + + + +
+ + + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/pause.html b/testing/web-platform/tests/web-animations/interfaces/Animation/pause.html new file mode 100644 index 0000000000..1d1bd5fd89 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/pause.html @@ -0,0 +1,98 @@ + + +Animation.pause + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/pending.html b/testing/web-platform/tests/web-animations/interfaces/Animation/pending.html new file mode 100644 index 0000000000..c200f9e977 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/pending.html @@ -0,0 +1,55 @@ + + +Animation.pending + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/persist.html b/testing/web-platform/tests/web-animations/interfaces/Animation/persist.html new file mode 100644 index 0000000000..c18993cbc4 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/persist.html @@ -0,0 +1,40 @@ + + +Animation.persist + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/play.html b/testing/web-platform/tests/web-animations/interfaces/Animation/play.html new file mode 100644 index 0000000000..6c5d604b1e --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/play.html @@ -0,0 +1,34 @@ + + +Animation.play + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/ready.html b/testing/web-platform/tests/web-animations/interfaces/Animation/ready.html new file mode 100644 index 0000000000..462e2a0484 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/ready.html @@ -0,0 +1,78 @@ + + +Animation.ready + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/startTime.html b/testing/web-platform/tests/web-animations/interfaces/Animation/startTime.html new file mode 100644 index 0000000000..61f76955a3 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/startTime.html @@ -0,0 +1,55 @@ + + +Animation.startTime + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/style-change-events.html b/testing/web-platform/tests/web-animations/interfaces/Animation/style-change-events.html new file mode 100644 index 0000000000..b41f748720 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/style-change-events.html @@ -0,0 +1,371 @@ + + +Animation interface: style change events + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/AnimationEffect/getComputedTiming.html b/testing/web-platform/tests/web-animations/interfaces/AnimationEffect/getComputedTiming.html new file mode 100644 index 0000000000..10bd193361 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/AnimationEffect/getComputedTiming.html @@ -0,0 +1,214 @@ + + +AnimationEffect.getComputedTiming + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/AnimationEffect/updateTiming.html b/testing/web-platform/tests/web-animations/interfaces/AnimationEffect/updateTiming.html new file mode 100644 index 0000000000..6a340c0bf4 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/AnimationEffect/updateTiming.html @@ -0,0 +1,475 @@ + + +AnimationEffect.updateTiming + + + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/AnimationPlaybackEvent/constructor.html b/testing/web-platform/tests/web-animations/interfaces/AnimationPlaybackEvent/constructor.html new file mode 100644 index 0000000000..1c40a3fb21 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/AnimationPlaybackEvent/constructor.html @@ -0,0 +1,30 @@ + + +AnimationPlaybackEvent constructor + + + +
+ diff --git a/testing/web-platform/tests/web-animations/interfaces/Document/timeline.html b/testing/web-platform/tests/web-animations/interfaces/Document/timeline.html new file mode 100644 index 0000000000..b8b4d74d5e --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Document/timeline.html @@ -0,0 +1,23 @@ + + +Document.timeline + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/DocumentOrShadowRoot/getAnimations.html b/testing/web-platform/tests/web-animations/interfaces/DocumentOrShadowRoot/getAnimations.html new file mode 100644 index 0000000000..9bcc042a8f --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/DocumentOrShadowRoot/getAnimations.html @@ -0,0 +1,234 @@ + + +DocumentOrShadowRoot.getAnimations + + + + + +
+
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/DocumentTimeline/constructor.html b/testing/web-platform/tests/web-animations/interfaces/DocumentTimeline/constructor.html new file mode 100644 index 0000000000..ca0997ac8f --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/DocumentTimeline/constructor.html @@ -0,0 +1,43 @@ + + +DocumentTimeline constructor tests + + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/DocumentTimeline/style-change-events.html b/testing/web-platform/tests/web-animations/interfaces/DocumentTimeline/style-change-events.html new file mode 100644 index 0000000000..c1607e6fb9 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/DocumentTimeline/style-change-events.html @@ -0,0 +1,92 @@ + + +DocumentTimeline interface: style change events + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/composite.html b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/composite.html new file mode 100644 index 0000000000..bcca2cad24 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/composite.html @@ -0,0 +1,47 @@ + + +KeyframeEffect.composite + + + + + +
+ diff --git a/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/constructor.html b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/constructor.html new file mode 100644 index 0000000000..f9d552e63e --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/constructor.html @@ -0,0 +1,195 @@ + + +KeyframeEffect constructor + + + + + + + + + +
+
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/copy-constructor.html b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/copy-constructor.html new file mode 100644 index 0000000000..e3bc0db00a --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/copy-constructor.html @@ -0,0 +1,93 @@ + + +KeyframeEffect copy constructor + + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/getKeyframes.html b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/getKeyframes.html new file mode 100644 index 0000000000..1f8d267e4a --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/getKeyframes.html @@ -0,0 +1,25 @@ + + +KeyframeEffect getKeyframes() + + + + + + +
+
+ \ No newline at end of file diff --git a/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/iterationComposite.html b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/iterationComposite.html new file mode 100644 index 0000000000..bbb8ee2a32 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/iterationComposite.html @@ -0,0 +1,36 @@ + + +KeyframeEffect.iterationComposite + + + + +
+ diff --git a/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/processing-a-keyframes-argument-001.html b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/processing-a-keyframes-argument-001.html new file mode 100644 index 0000000000..271a47b301 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/processing-a-keyframes-argument-001.html @@ -0,0 +1,602 @@ + + +Processing a keyframes argument (property access) + + + + + + +
+
+ diff --git a/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/processing-a-keyframes-argument-002.html b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/processing-a-keyframes-argument-002.html new file mode 100644 index 0000000000..8620f883f9 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/processing-a-keyframes-argument-002.html @@ -0,0 +1,125 @@ + + +Processing a keyframes argument (easing) + + + + + + +
+
+ diff --git a/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/setKeyframes.html b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/setKeyframes.html new file mode 100644 index 0000000000..a5c81a29bd --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/setKeyframes.html @@ -0,0 +1,55 @@ + + +KeyframeEffect.setKeyframes + + + + + + + +
+
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/style-change-events.html b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/style-change-events.html new file mode 100644 index 0000000000..eecf170cd9 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/style-change-events.html @@ -0,0 +1,242 @@ + + +KeyframeEffect interface: style change events + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/target.html b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/target.html new file mode 100644 index 0000000000..30b2ee6f0c --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/target.html @@ -0,0 +1,266 @@ + + +KeyframeEffect.target and .pseudoElement + + + + + + +
+ + -- cgit v1.2.3