From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- .../interfaces/Animatable/animate.html | 180 ++++++ .../interfaces/Animation/cancel.html | 60 ++ .../interfaces/Animation/constructor.html | 115 ++++ .../interfaces/Animation/effect.html | 23 + .../interfaces/Animation/finish.html | 246 ++++++++ .../interfaces/Animation/finished.html | 370 +++++++++++ .../web-animations/interfaces/Animation/id.html | 28 + .../interfaces/Animation/oncancel.html | 33 + .../interfaces/Animation/onfinish.html | 121 ++++ .../web-animations/interfaces/Animation/pause.html | 98 +++ .../web-animations/interfaces/Animation/play.html | 34 + .../interfaces/Animation/playState.html | 53 ++ .../interfaces/Animation/playbackRate.html | 86 +++ .../web-animations/interfaces/Animation/ready.html | 96 +++ .../interfaces/Animation/reverse.html | 158 +++++ .../interfaces/Animation/startTime.html | 55 ++ .../interfaces/AnimationEffectTiming/delay.html | 61 ++ .../AnimationEffectTiming/direction.html | 27 + .../interfaces/AnimationEffectTiming/duration.html | 148 +++++ .../interfaces/AnimationEffectTiming/easing.html | 83 +++ .../interfaces/AnimationEffectTiming/endDelay.html | 84 +++ .../interfaces/AnimationEffectTiming/fill.html | 24 + .../AnimationEffectTiming/getAnimations.html | 91 +++ .../AnimationEffectTiming/getComputedStyle.html | 172 +++++ .../AnimationEffectTiming/iterationStart.html | 72 +++ .../AnimationEffectTiming/iterations.html | 56 ++ .../AnimationTimeline/document-timeline.html | 59 ++ .../interfaces/AnimationTimeline/idlharness.html | 36 ++ .../interfaces/Document/getAnimations.html | 55 ++ .../interfaces/DocumentTimeline/constructor.html | 42 ++ .../interfaces/KeyframeEffect/constructor.html | 278 +++++++++ .../interfaces/KeyframeEffect/copy-contructor.html | 27 + .../interfaces/KeyframeEffect/effect-easing.html | 683 ++++++++++++++++++++ .../KeyframeEffect/getComputedTiming.html | 212 +++++++ .../KeyframeEffect/iterationComposite.html | 693 +++++++++++++++++++++ .../processing-a-keyframes-argument.html | 329 ++++++++++ .../interfaces/KeyframeEffect/setKeyframes.html | 50 ++ .../interfaces/KeyframeEffect/setTarget.html | 160 +++++ .../interfaces/KeyframeEffect/spacing.html | 60 ++ .../KeyframeEffectReadOnly/copy-contructor.html | 94 +++ .../interfaces/KeyframeEffectReadOnly/spacing.html | 237 +++++++ 41 files changed, 5589 insertions(+) create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animatable/animate.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/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/finish.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/pause.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/playState.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/playbackRate.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/reverse.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Animation/startTime.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/delay.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/direction.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/duration.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/easing.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/endDelay.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/fill.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/getAnimations.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/getComputedStyle.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/iterationStart.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/iterations.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/AnimationTimeline/document-timeline.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/AnimationTimeline/idlharness.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/Document/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/KeyframeEffect/constructor.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/copy-contructor.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/effect-easing.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/getComputedTiming.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.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/setTarget.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/spacing.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/KeyframeEffectReadOnly/copy-contructor.html create mode 100644 testing/web-platform/tests/web-animations/interfaces/KeyframeEffectReadOnly/spacing.html (limited to 'testing/web-platform/tests/web-animations/interfaces') 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 000000000..a54298aa4 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animatable/animate.html @@ -0,0 +1,180 @@ + + +Animatable.animate tests + + + + + + +
+ + + 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 000000000..f8f174abd --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/cancel.html @@ -0,0 +1,60 @@ + + +Animation.cancel() + + + + + +
+ + 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 000000000..4f76194b6 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/constructor.html @@ -0,0 +1,115 @@ + + +Animation constructor tests + + + + + + +
+
+ + 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 000000000..d881a96a7 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/effect.html @@ -0,0 +1,23 @@ + + +Animation.effect tests + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/finish.html b/testing/web-platform/tests/web-animations/interfaces/Animation/finish.html new file mode 100644 index 000000000..9b9c4c710 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/finish.html @@ -0,0 +1,246 @@ + + +Animation.finish() + + + + + +
+ + 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 000000000..d56de1b03 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/finished.html @@ -0,0 +1,370 @@ + + +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 000000000..2fadd5623 --- /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 000000000..b8d9ced61 --- /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 000000000..50e5bed6b --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/onfinish.html @@ -0,0 +1,121 @@ + + +Animation.onfinish + + + + + +
+ + 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 000000000..bcfaf4a9b --- /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/play.html b/testing/web-platform/tests/web-animations/interfaces/Animation/play.html new file mode 100644 index 000000000..767d8df17 --- /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/playState.html b/testing/web-platform/tests/web-animations/interfaces/Animation/playState.html new file mode 100644 index 000000000..15af526cd --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/playState.html @@ -0,0 +1,53 @@ + + +Animation.playState + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/playbackRate.html b/testing/web-platform/tests/web-animations/interfaces/Animation/playbackRate.html new file mode 100644 index 000000000..c923df6b4 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/playbackRate.html @@ -0,0 +1,86 @@ + + +Animation.playbackRate + + + + + +
+ + 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 000000000..815fe3da7 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/ready.html @@ -0,0 +1,96 @@ + + +Animation.ready + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/Animation/reverse.html b/testing/web-platform/tests/web-animations/interfaces/Animation/reverse.html new file mode 100644 index 000000000..555226111 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/reverse.html @@ -0,0 +1,158 @@ + + +Animation.reverse() + + + + + +
+ + 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 000000000..6dfd7cf29 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Animation/startTime.html @@ -0,0 +1,55 @@ + + +Animation.startTime tests + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/delay.html b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/delay.html new file mode 100644 index 000000000..d6e1cd904 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/delay.html @@ -0,0 +1,61 @@ + + +delay tests + + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/direction.html b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/direction.html new file mode 100644 index 000000000..c3657f3a0 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/direction.html @@ -0,0 +1,27 @@ + + +direction tests + + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/duration.html b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/duration.html new file mode 100644 index 000000000..8e2a1a1b9 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/duration.html @@ -0,0 +1,148 @@ + + +duration tests + + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/easing.html b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/easing.html new file mode 100644 index 000000000..cedd7e68b --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/easing.html @@ -0,0 +1,83 @@ + + +easing tests + + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/endDelay.html b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/endDelay.html new file mode 100644 index 000000000..40136b45c --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/endDelay.html @@ -0,0 +1,84 @@ + + +endDelay tests + + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/fill.html b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/fill.html new file mode 100644 index 000000000..21e523b73 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/fill.html @@ -0,0 +1,24 @@ + + +fill tests + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/getAnimations.html b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/getAnimations.html new file mode 100644 index 000000000..d96192c9d --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/getAnimations.html @@ -0,0 +1,91 @@ + + +Element.getAnimations tests + + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/getComputedStyle.html b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/getComputedStyle.html new file mode 100644 index 000000000..d6503a431 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/getComputedStyle.html @@ -0,0 +1,172 @@ + + +getComputedStyle tests + + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/iterationStart.html b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/iterationStart.html new file mode 100644 index 000000000..0273fd12b --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/iterationStart.html @@ -0,0 +1,72 @@ + + +iterationStart tests + + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/iterations.html b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/iterations.html new file mode 100644 index 000000000..1ba41028b --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/iterations.html @@ -0,0 +1,56 @@ + + +iterations tests + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/AnimationTimeline/document-timeline.html b/testing/web-platform/tests/web-animations/interfaces/AnimationTimeline/document-timeline.html new file mode 100644 index 000000000..0f782f50a --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/AnimationTimeline/document-timeline.html @@ -0,0 +1,59 @@ + + +Default document timeline tests + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/AnimationTimeline/idlharness.html b/testing/web-platform/tests/web-animations/interfaces/AnimationTimeline/idlharness.html new file mode 100644 index 000000000..29c891407 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/AnimationTimeline/idlharness.html @@ -0,0 +1,36 @@ + + +Web Animations API: DocumentTimeline tests + + + + +
+ + + diff --git a/testing/web-platform/tests/web-animations/interfaces/Document/getAnimations.html b/testing/web-platform/tests/web-animations/interfaces/Document/getAnimations.html new file mode 100644 index 000000000..e87751c04 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/Document/getAnimations.html @@ -0,0 +1,55 @@ + + +document.getAnimations tests + + + + + +
+
+ + 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 000000000..8968ff4ce --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/DocumentTimeline/constructor.html @@ -0,0 +1,42 @@ + + +DocumentTimeline constructor tests + + + + + +
+ + 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 000000000..97c7613f8 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/constructor.html @@ -0,0 +1,278 @@ + + +KeyframeEffectReadOnly constructor tests + + + + + + +
+
+ + + diff --git a/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/copy-contructor.html b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/copy-contructor.html new file mode 100644 index 000000000..bc278389c --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/copy-contructor.html @@ -0,0 +1,27 @@ + + +KeyframeEffect copy constructor tests + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/effect-easing.html b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/effect-easing.html new file mode 100644 index 000000000..05019cdf3 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/effect-easing.html @@ -0,0 +1,683 @@ + + +Effect-level easing tests + + + + + + + +
+
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/getComputedTiming.html b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/getComputedTiming.html new file mode 100644 index 000000000..4d799272b --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/getComputedTiming.html @@ -0,0 +1,212 @@ + + +KeyframeEffectReadOnly getComputedTiming() tests + + + + + + +
+
+ + 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 000000000..743d10887 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/iterationComposite.html @@ -0,0 +1,693 @@ + + +KeyframeEffect.iterationComposite tests + + + + +
+ diff --git a/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/processing-a-keyframes-argument.html b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/processing-a-keyframes-argument.html new file mode 100644 index 000000000..d16831281 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/processing-a-keyframes-argument.html @@ -0,0 +1,329 @@ + + +KeyframeEffectReadOnly constructor tests + + + + + + +
+
+ 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 000000000..c951411de --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/setKeyframes.html @@ -0,0 +1,50 @@ + + +KeyframeEffect setKeyframes() tests + + + + + + +
+
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/setTarget.html b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/setTarget.html new file mode 100644 index 000000000..2b07d3de6 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/setTarget.html @@ -0,0 +1,160 @@ + + +Writable effect.target tests + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/spacing.html b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/spacing.html new file mode 100644 index 000000000..612a3af8d --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffect/spacing.html @@ -0,0 +1,60 @@ + + +KeyframeEffect spacing attribute tests + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/KeyframeEffectReadOnly/copy-contructor.html b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffectReadOnly/copy-contructor.html new file mode 100644 index 000000000..287ffe114 --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffectReadOnly/copy-contructor.html @@ -0,0 +1,94 @@ + + +KeyframeEffectReadOnly copy constructor tests + + + + + +
+ + diff --git a/testing/web-platform/tests/web-animations/interfaces/KeyframeEffectReadOnly/spacing.html b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffectReadOnly/spacing.html new file mode 100644 index 000000000..c83d1ebcb --- /dev/null +++ b/testing/web-platform/tests/web-animations/interfaces/KeyframeEffectReadOnly/spacing.html @@ -0,0 +1,237 @@ + + +KeyframeEffectReadOnly spacing attribute tests + + + + + +
+ + -- cgit v1.2.3