-
Notifications
You must be signed in to change notification settings - Fork 408
/
Copy pathweb-platform-tests-expectations.js
2702 lines (1861 loc) · 160 KB
/
web-platform-tests-expectations.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Expectations to be used by karma-testharness-adapter.js.
module.exports = {
skip: {
'test/web-platform-tests/web-animations/interfaces/Animation/constructor.html':
'KeyframeEffectReadOnly is not defined causing the test to timeout.',
},
flakyTestIndicator: 'FLAKY_TEST_RESULT',
// Schema for failureConfigurations:
// failureConfigurations := [ <failureConfiguration> ]
// failureConfiguration := { configuration: <configuration>?, failures: <failures> }
// configuration := { target: <string>?, withNativeFallback: <bool>? }
// failures := { <test URL>: { <test name>: <failure message> } }
failureConfigurations: [
{
configuration: {
target: 'web-animations',
withNativeFallback: true,
},
failures: {
'test/web-platform-tests/web-animations/animation-model/keyframe-effects/effect-value-context.html': {
'Effect values reflect changes to font-size when computed style is not immediately flushed':
'assert_equals: Effect value after updating font-size on parent element expected "300px" but got "150px"',
},
},
},
{
configuration: {
target: 'web-animations',
withNativeFallback: false,
},
failures: {
'test/web-platform-tests/web-animations/interfaces/Animatable/animate-basic.html': {
'Element.animate() creates an Animation object':
'assert_equals: Returned object is an Animation expected "[object Animation]" but got "[object Object]"',
'Element.animate() does not accept property-indexed keyframes with an invalid easing value':
'assert_throws: function "function () {\n div.animate(subtest.input, 2000);\n }" did not throw',
},
'test/web-platform-tests/web-animations/interfaces/Animation/cancel.html': {
'Animated style is cleared after calling Animation.cancel()':
'assert_not_equals: transform style is animated before cancelling got disallowed value "none"',
},
'test/web-platform-tests/web-animations/interfaces/Animation/pause.html': {
'pause() from idle':
'assert_equals: initially pause-pending expected "pending" but got "paused"',
},
'test/web-platform-tests/web-animations/interfaces/KeyframeEffect/effect-easing.html': {
'effect easing produces negative values 1 with keyframe easing cubic-bezier(0, 0, 0, 0)':
'assert_approx_equals: The left of the animation should be approximately -29.501119758965654 at 250ms expected -29.501119758965654 +/- 0.01 but got 0',
'effect easing produces values greater than 1 with keyframe easing cubic-bezier(1, 1, 1, 1)':
'assert_approx_equals: The left of the animation should be approximately 102.40666638411385 at 250ms expected 102.40666638411385 +/- 0.01 but got 100',
'effect easing which produces values greater than 1 and the tangent on the upper boundary is infinity with keyframe easing producing values greater than 1':
'assert_approx_equals: The left of the animation should be approximately 100 at 240ms expected 100 +/- 0.01 but got 99.5333',
},
},
},
{
configuration: {
target: 'web-animations-next',
withNativeFallback: true,
},
failures: {
'test/web-platform-tests/web-animations/animation-model/keyframe-effects/effect-value-context.html': {
'Effect values reflect changes to font-size when computed style is not immediately flushed':
'assert_equals: Effect value after updating font-size on parent element expected "300px" but got "150px"',
},
'test/web-platform-tests/web-animations/interfaces/Animatable/animate-basic.html': {
'Element.animate() creates an Animation object':
'assert_equals: Returned object is an Animation expected "[object Animation]" but got "[object Object]"',
},
'test/web-platform-tests/web-animations/interfaces/Animatable/animate-effect.html': {
'Element.animate() accepts a double as an options argument':
'assert_equals: expected "auto" but got "none"',
'Element.animate() accepts a keyframe sequence where greater shorthand precedes lesser shorthand':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a keyframe sequence where lesser shorthand precedes greater shorthand':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a keyframe sequence where longhand precedes shorthand':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a keyframe sequence where shorthand precedes longhand':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a keyframe sequence with a CSS variable reference':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a keyframe sequence with a CSS variable reference in a shorthand property':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a keyframe sequence with different composite values, but the same composite value for a given offset':
'add compositing is not supported',
'Element.animate() accepts a keyframe sequence with different easing values, but the same easing value for a given offset':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a keyframe sequence with duplicate values for a given interior offset':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a keyframe sequence with duplicate values for offsets 0 and 1':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a keyframe sequence with repeated values at offset 1 with different easings':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a one property keyframe sequence with all omitted offsets':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a one property keyframe sequence with some omitted offsets':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a one property one keyframe sequence':
'Animation to or from an underlying value is not yet supported.',
'Element.animate() accepts a one property one non-array value property-indexed keyframes specification':
'Animation to or from an underlying value is not yet supported.',
'Element.animate() accepts a one property one value property-indexed keyframes specification':
'Animation to or from an underlying value is not yet supported.',
'Element.animate() accepts a one property two keyframe sequence':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a one property two keyframe sequence that needs to stringify its values':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a one property two value property-indexed keyframes specification':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a one property two value property-indexed keyframes specification that needs to stringify its values':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a one property two value property-indexed keyframes specification where the first value is invalid':
'Animation to or from an underlying value is not yet supported.',
'Element.animate() accepts a one property two value property-indexed keyframes specification where the second value is invalid':
'Animation to or from an underlying value is not yet supported.',
'Element.animate() accepts a one shorthand property two keyframe sequence':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a one shorthand property two value property-indexed keyframes specification':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a property-indexed keyframes specification with a CSS variable reference':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a property-indexed keyframes specification with a CSS variable reference in a shorthand property':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a property-indexed keyframes specification with an invalid value':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a single keyframe sequence with omitted offsets':
'Animation to or from an underlying value is not yet supported.',
'Element.animate() accepts a two property (a shorthand and one of its component longhands) two keyframe sequence':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a two property (one shorthand and one of its longhand components) two value property-indexed keyframes specification':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a two property four keyframe sequence':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a two property keyframe sequence where one property is missing from the first keyframe':
'Animation to or from an underlying value is not yet supported.',
'Element.animate() accepts a two property keyframe sequence where one property is missing from the last keyframe':
'Animation to or from an underlying value is not yet supported.',
'Element.animate() accepts a two property keyframe sequence with some omitted offsets':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a two property property-indexed keyframes specification with different numbers of values':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a two property two keyframe sequence':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts a two property two value property-indexed keyframes specification':
'anim.effect.getKeyframes is not a function',
'Element.animate() accepts an absent options argument':
'assert_equals: expected (string) "auto" but got (number) 0',
'Element.animate() creates an Animation object with a KeyframeEffect':
'assert_equals: Returned Animation has a KeyframeEffect expected "[object KeyframeEffect]" but got "[object Object]"',
},
'test/web-platform-tests/web-animations/interfaces/Animatable/animate-pseudo-element.html': {
'CSSPseudoElement.animate() creates an Animation object':
'document.getAnimations is not a function',
'CSSPseudoElement.animate() creates an Animation object targeting to the correct CSSPseudoElement object':
'document.getAnimations is not a function',
},
'test/web-platform-tests/web-animations/interfaces/Animation/finish.html': {
'Test finish() resolves finished promise synchronously with an animation without a target':
'KeyframeEffectReadOnly is not defined',
'Test finish() while pause-pending with negative playbackRate':
'FLAKY_TEST_RESULT',
'Test finish() while pause-pending with positive playbackRate':
'FLAKY_TEST_RESULT',
'Test finish() while play-pending':
'FLAKY_TEST_RESULT',
'Test finishing of animation with a current time past the effect end':
'animation.effect.getComputedTiming is not a function',
'Test normally finished animation resolves finished promise synchronously with an animation without a target':
'KeyframeEffectReadOnly is not defined',
},
'test/web-platform-tests/web-animations/interfaces/Animation/finished.html': {
'Test finished promise changes for animation duration changes':
'FLAKY_TEST_RESULT',
'Test finished promise is not resolved once the animation falls out finished state even though the current finished promise is generated soon after animation state became finished':
'assert_unreached: Animation.finished should not be resolved Reached unreachable code',
'Test finished promise is not resolved when the animation falls out finished state immediately':
'assert_unreached: Animation.finished should not be resolved Reached unreachable code',
'cancelling an idle animation still replaces the finished promise':
'assert_not_equals: A redundant call to cancel() should still generate a new finished promise got disallowed value object "[object Promise]"',
},
'test/web-platform-tests/web-animations/interfaces/Animation/oncancel.html': {
'oncancel event is fired when animation.cancel() is called.':
'FLAKY_TEST_RESULT',
},
'test/web-platform-tests/web-animations/interfaces/Animation/onfinish.html': {
'onfinish event is fired when animation.finish() is called':
'FLAKY_TEST_RESULT',
},
'test/web-platform-tests/web-animations/interfaces/Animation/playbackRate.html': {
'Test the effect of setting playbackRate while playing animation':
'FLAKY_TEST_RESULT',
},
'test/web-platform-tests/web-animations/interfaces/Animation/reverse.html': {
'reverse() when playbackRate < 0 and currentTime < 0':
'assert_equals: reverse() should start playing from the start of animation time if the playbackRate < 0 and the currentTime < 0 expected 0 but got -200000',
'reverse() when playbackRate < 0 and currentTime < 0 and the target effect end is positive infinity':
'assert_equals: reverse() should start playing from the start of animation time if the playbackRate < 0 and the currentTime < 0 and the target effect is positive infinity expected 0 but got -200000',
'reverse() when playbackRate < 0 and currentTime > effect end':
'assert_equals: reverse() should start playing from the start of animation time if the playbackRate < 0 and the currentTime > effect end expected 0 but got 200000',
'reverse() when playbackRate > 0 and currentTime < 0':
'assert_equals: reverse() should start playing from the animation effect end if the playbackRate > 0 and the currentTime < 0 expected 100000 but got -200000',
'reverse() when playbackRate > 0 and currentTime > effect end':
'assert_equals: reverse() should start playing from the animation effect end if the playbackRate > 0 and the currentTime > effect end expected 100000 but got 200000',
},
'test/web-platform-tests/web-animations/interfaces/AnimationEffectTiming/delay.html': {
'Test adding a positive delay to an animation without a backwards fill makes it no longer active':
'anim.effect.getComputedTiming is not a function',
'Test finishing an animation using a large negative delay':
'anim.effect.getComputedTiming is not a function',
'Test seeking an animation by setting a negative delay':
'anim.effect.getComputedTiming is not a function',
'set delay -100':
'anim.effect.getComputedTiming is not a function',
'set delay 100':
'anim.effect.getComputedTiming is not a function',
},
'test/web-platform-tests/web-animations/interfaces/AnimationEffectTiming/duration.html': {
'set NaN duration in animate using a duration parameter':
'assert_throws: function "function () {\n div.animate({ opacity: [ 0, 1 ] }, NaN);\n }" did not throw',
'set auto duration in animate as object':
'assert_equals: set duration \'auto\' expected (string) "auto" but got (number) 0',
'set duration 123.45':
'anim.effect.getComputedTiming is not a function',
'set duration Infinity':
'anim.effect.getComputedTiming is not a function',
'set duration auto':
'anim.effect.getComputedTiming is not a function',
},
'test/web-platform-tests/web-animations/interfaces/AnimationEffectTiming/easing.html': {
'Change the easing while the animation is running':
'anim.effect.getComputedTiming is not a function',
'ease function':
'animation.effect.getComputedTiming is not a function',
'ease-in function':
'animation.effect.getComputedTiming is not a function',
'ease-in-out function':
'animation.effect.getComputedTiming is not a function',
'ease-out function':
'animation.effect.getComputedTiming is not a function',
'easing function which produces values greater than 1':
'animation.effect.getComputedTiming is not a function',
'linear function':
'animation.effect.getComputedTiming is not a function',
'steps(end) function':
'animation.effect.getComputedTiming is not a function',
'steps(start) function':
'animation.effect.getComputedTiming is not a function',
},
'test/web-platform-tests/web-animations/interfaces/AnimationEffectTiming/endDelay.html': {
'onfinish event is fired currentTime is after endTime':
'FLAKY_TEST_RESULT',
'set endDelay -1000':
'anim.effect.getComputedTiming is not a function',
'set endDelay 123.45':
'anim.effect.getComputedTiming is not a function',
},
'test/web-platform-tests/web-animations/interfaces/AnimationEffectTiming/fill.html': {
'set fill backwards':
'anim.effect.getComputedTiming is not a function',
'set fill both':
'anim.effect.getComputedTiming is not a function',
'set fill forwards':
'anim.effect.getComputedTiming is not a function',
'set fill none':
'anim.effect.getComputedTiming is not a function',
},
'test/web-platform-tests/web-animations/interfaces/AnimationEffectTiming/getAnimations.html': {
'when currentTime changed in duration:1000, delay: -500, endDelay: -500':
'assert_equals: when currentTime 0 expected 0 but got 1',
'when currentTime changed in duration:1000, delay: 500, endDelay: -500':
'assert_equals: set currentTime 1000 expected 0 but got 1',
'when duration is changed':
'assert_equals: set duration 102000 expected (object) object "[object Object]" but got (undefined) undefined',
'when endDelay is changed':
'assert_equals: set negative endDelay so as endTime is less than currentTime expected 0 but got 1',
'when iterations is changed':
'assert_equals: set iterations 10 expected (object) object "[object Object]" but got (undefined) undefined',
},
'test/web-platform-tests/web-animations/interfaces/AnimationEffectTiming/getComputedStyle.html': {
'change currentTime when fill forwards and endDelay is negative':
'assert_equals: set currentTime same as endTime expected "0" but got "0.5"',
'changed duration immediately updates its computed styles':
'FLAKY_TEST_RESULT',
'changed iterations immediately updates its computed styles':
'FLAKY_TEST_RESULT',
},
'test/web-platform-tests/web-animations/interfaces/AnimationEffectTiming/iterationStart.html': {
'Test invalid iterationStart value':
'assert_throws: function "function () {\n anim.effect.timing.iterationStart = -1;\n }" threw object "ReferenceError: timing is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'Test that changing the iterationStart affects computed timing during the active phase':
'anim.effect.getComputedTiming is not a function',
'Test that changing the iterationStart affects computed timing when backwards-filling':
'anim.effect.getComputedTiming is not a function',
'Test that changing the iterationStart affects computed timing when forwards-filling':
'anim.effect.getComputedTiming is not a function',
},
'test/web-platform-tests/web-animations/interfaces/AnimationEffectTiming/iterations.html': {
'set iterations 2':
'anim.effect.getComputedTiming is not a function',
'set iterations Infinity':
'anim.effect.getComputedTiming is not a function',
},
'test/web-platform-tests/web-animations/interfaces/AnimationTimeline/document-timeline.html': {
'document.timeline.currentTime liveness tests':
'assert_true: document.timeline.currentTime increases between script blocks expected true got false',
'document.timeline.currentTime value tests':
'assert_true: document.timeline.currentTime is positive expected true got false',
},
'test/web-platform-tests/web-animations/interfaces/AnimationTimeline/idlharness.html': {
'AnimationTimeline interface object length':
'assert_own_property: self does not have own property "AnimationTimeline" expected property "AnimationTimeline" missing',
'AnimationTimeline interface object name':
'assert_own_property: self does not have own property "AnimationTimeline" expected property "AnimationTimeline" missing',
'AnimationTimeline interface: attribute currentTime':
'assert_own_property: self does not have own property "AnimationTimeline" expected property "AnimationTimeline" missing',
'AnimationTimeline interface: document.timeline must inherit property "currentTime" with the proper type (0)':
'assert_inherits: property "currentTime" found on object expected in prototype chain',
'AnimationTimeline interface: existence and properties of interface object':
'assert_own_property: self does not have own property "AnimationTimeline" expected property "AnimationTimeline" missing',
'AnimationTimeline interface: existence and properties of interface prototype object':
'assert_own_property: self does not have own property "AnimationTimeline" expected property "AnimationTimeline" missing',
'AnimationTimeline interface: existence and properties of interface prototype object\'s "constructor" property':
'assert_own_property: self does not have own property "AnimationTimeline" expected property "AnimationTimeline" missing',
'DocumentTimeline interface object length':
'assert_own_property: self does not have own property "DocumentTimeline" expected property "DocumentTimeline" missing',
'DocumentTimeline interface object name':
'assert_own_property: self does not have own property "DocumentTimeline" expected property "DocumentTimeline" missing',
'DocumentTimeline interface: existence and properties of interface object':
'assert_own_property: self does not have own property "DocumentTimeline" expected property "DocumentTimeline" missing',
'DocumentTimeline interface: existence and properties of interface prototype object':
'assert_own_property: self does not have own property "DocumentTimeline" expected property "DocumentTimeline" missing',
'DocumentTimeline interface: existence and properties of interface prototype object\'s "constructor" property':
'assert_own_property: self does not have own property "DocumentTimeline" expected property "DocumentTimeline" missing',
'DocumentTimeline must be primary interface of document.timeline':
'assert_own_property: self does not have own property "DocumentTimeline" expected property "DocumentTimeline" missing',
'Stringification of document.timeline':
'assert_equals: class string of document.timeline expected "[object DocumentTimeline]" but got "[object Object]"',
},
'test/web-platform-tests/web-animations/interfaces/Document/getAnimations.html': {
'Test document.getAnimations for non-animated content':
'document.getAnimations is not a function',
'Test document.getAnimations for script-generated animations':
'document.getAnimations is not a function',
'Test document.getAnimations with null target':
'KeyframeEffectReadOnly is not defined',
'Test the order of document.getAnimations with script generated animations':
'document.getAnimations is not a function',
},
'test/web-platform-tests/web-animations/interfaces/KeyframeEffect/constructor.html': {
'Invalid KeyframeEffectReadOnly option by -Infinity':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target,\n { left: ["10px", "20px"] },\n stest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'Invalid KeyframeEffectReadOnly option by NaN':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target,\n { left: ["10px", "20px"] },\n stest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'Invalid KeyframeEffectReadOnly option by a NaN duration':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target,\n { left: ["10px", "20px"] },\n stest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'Invalid KeyframeEffectReadOnly option by a NaN iterations':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target,\n { left: ["10px", "20px"] },\n stest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'Invalid KeyframeEffectReadOnly option by a blank easing':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target,\n { left: ["10px", "20px"] },\n stest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'Invalid KeyframeEffectReadOnly option by a multi-value easing':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target,\n { left: ["10px", "20px"] },\n stest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'Invalid KeyframeEffectReadOnly option by a negative Infinity duration':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target,\n { left: ["10px", "20px"] },\n stest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'Invalid KeyframeEffectReadOnly option by a negative Infinity iterations':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target,\n { left: ["10px", "20px"] },\n stest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'Invalid KeyframeEffectReadOnly option by a negative duration':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target,\n { left: ["10px", "20px"] },\n stest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'Invalid KeyframeEffectReadOnly option by a negative iterations':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target,\n { left: ["10px", "20px"] },\n stest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'Invalid KeyframeEffectReadOnly option by a negative value':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target,\n { left: ["10px", "20px"] },\n stest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'Invalid KeyframeEffectReadOnly option by a string duration':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target,\n { left: ["10px", "20px"] },\n stest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'Invalid KeyframeEffectReadOnly option by a variable easing':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target,\n { left: ["10px", "20px"] },\n stest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'Invalid KeyframeEffectReadOnly option by an \'inherit\' easing':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target,\n { left: ["10px", "20px"] },\n stest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'Invalid KeyframeEffectReadOnly option by an \'initial\' easing':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target,\n { left: ["10px", "20px"] },\n stest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'Invalid KeyframeEffectReadOnly option by an unrecognized easing':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target,\n { left: ["10px", "20px"] },\n stest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'Invalid easing [a blank easing] in keyframe sequence should be thrown':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target, subtest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "TypeError" ("TypeError")',
'Invalid easing [a multi-value easing] in keyframe sequence should be thrown':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target, subtest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "TypeError" ("TypeError")',
'Invalid easing [a variable easing] in keyframe sequence should be thrown':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target, subtest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "TypeError" ("TypeError")',
'Invalid easing [an \'inherit\' easing] in keyframe sequence should be thrown':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target, subtest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "TypeError" ("TypeError")',
'Invalid easing [an \'initial\' easing] in keyframe sequence should be thrown':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target, subtest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "TypeError" ("TypeError")',
'Invalid easing [an unrecognized easing] in keyframe sequence should be thrown':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target, subtest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "TypeError" ("TypeError")',
'KeyframeEffect constructor creates an AnimationEffectTiming timing object':
'assert_equals: expected "[object KeyframeEffect]" but got "[object Object]"',
'KeyframeEffectReadOnly constructor throws with a keyframe sequence with an invalid easing value':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target, subtest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'KeyframeEffectReadOnly constructor throws with keyframes not loosely sorted by offset':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target, subtest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'KeyframeEffectReadOnly constructor throws with keyframes with an invalid composite value':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target, subtest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'KeyframeEffectReadOnly constructor throws with keyframes with an out-of-bounded negative offset':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target, subtest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'KeyframeEffectReadOnly constructor throws with keyframes with an out-of-bounded positive offset':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target, subtest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'KeyframeEffectReadOnly constructor throws with property-indexed keyframes with an invalid easing value':
'assert_throws: function "function () {\n new KeyframeEffectReadOnly(target, subtest.input);\n }" threw object "ReferenceError: KeyframeEffectReadOnly is not defined" ("ReferenceError") expected object "[object Object]" ("TypeError")',
'a KeyframeEffectReadOnly can be constructed with a keyframe sequence where greater shorthand precedes lesser shorthand':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a keyframe sequence where lesser shorthand precedes greater shorthand':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a keyframe sequence where longhand precedes shorthand':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a keyframe sequence where shorthand precedes longhand':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a keyframe sequence with a CSS variable reference':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a keyframe sequence with a CSS variable reference in a shorthand property':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a keyframe sequence with different composite values, but the same composite value for a given offset':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a keyframe sequence with different easing values, but the same easing value for a given offset':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a keyframe sequence with duplicate values for a given interior offset':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a keyframe sequence with duplicate values for offsets 0 and 1':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a keyframe sequence with repeated values at offset 1 with different easings':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a one property keyframe sequence with all omitted offsets':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a one property keyframe sequence with some omitted offsets':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a one property one keyframe sequence':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a one property one non-array value property-indexed keyframes specification':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a one property one value property-indexed keyframes specification':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a one property two keyframe sequence':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a one property two keyframe sequence that needs to stringify its values':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a one property two value property-indexed keyframes specification':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a one property two value property-indexed keyframes specification that needs to stringify its values':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a one property two value property-indexed keyframes specification where the first value is invalid':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a one property two value property-indexed keyframes specification where the second value is invalid':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a one shorthand property two keyframe sequence':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a one shorthand property two value property-indexed keyframes specification':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a property-indexed keyframes specification with a CSS variable reference':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a property-indexed keyframes specification with a CSS variable reference in a shorthand property':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a property-indexed keyframes specification with an invalid value':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a single keyframe sequence with omitted offsets':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a two property (a shorthand and one of its component longhands) two keyframe sequence':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a two property (one shorthand and one of its longhand components) two value property-indexed keyframes specification':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a two property four keyframe sequence':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a two property keyframe sequence where one property is missing from the first keyframe':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a two property keyframe sequence where one property is missing from the last keyframe':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a two property keyframe sequence with some omitted offsets':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a two property property-indexed keyframes specification with different numbers of values':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a two property two keyframe sequence':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with a two property two value property-indexed keyframes specification':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly can be constructed with no frames':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed by +Infinity':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed by a double value':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed by a forwards fill':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed by a normal KeyframeEffectOptions object':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed by an Infinity duration':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed by an Infinity iterations':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed by an auto duration':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed by an auto fill':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed by an empty KeyframeEffectOptions object':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a keyframe sequence where greater shorthand precedes lesser shorthand roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a keyframe sequence where lesser shorthand precedes greater shorthand roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a keyframe sequence where longhand precedes shorthand roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a keyframe sequence where shorthand precedes longhand roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a keyframe sequence with a CSS variable reference in a shorthand property roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a keyframe sequence with a CSS variable reference roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a keyframe sequence with different composite values, but the same composite value for a given offset roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a keyframe sequence with different easing values, but the same easing value for a given offset roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a keyframe sequence with duplicate values for a given interior offset roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a keyframe sequence with duplicate values for offsets 0 and 1 roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a keyframe sequence with repeated values at offset 1 with different easings roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a one property keyframe sequence with all omitted offsets roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a one property keyframe sequence with some omitted offsets roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a one property one keyframe sequence roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a one property one non-array value property-indexed keyframes specification roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a one property one value property-indexed keyframes specification roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a one property two keyframe sequence roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a one property two keyframe sequence that needs to stringify its values roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a one property two value property-indexed keyframes specification roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a one property two value property-indexed keyframes specification that needs to stringify its values roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a one property two value property-indexed keyframes specification where the first value is invalid roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a one property two value property-indexed keyframes specification where the second value is invalid roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a one shorthand property two keyframe sequence roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a one shorthand property two value property-indexed keyframes specification roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a property-indexed keyframes specification with a CSS variable reference in a shorthand property roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a property-indexed keyframes specification with a CSS variable reference roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a property-indexed keyframes specification with an invalid value roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a single keyframe sequence with omitted offsets roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a two property (a shorthand and one of its component longhands) two keyframe sequence roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a two property (one shorthand and one of its longhand components) two value property-indexed keyframes specification roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a two property four keyframe sequence roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a two property keyframe sequence where one property is missing from the first keyframe roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a two property keyframe sequence where one property is missing from the last keyframe roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a two property keyframe sequence with some omitted offsets roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a two property property-indexed keyframes specification with different numbers of values roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a two property two keyframe sequence roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with a two property two value property-indexed keyframes specification roundtrips':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed with null target':
'KeyframeEffectReadOnly is not defined',
'a KeyframeEffectReadOnly constructed without any KeyframeEffectOptions object':
'KeyframeEffectReadOnly is not defined',
'composite values are parsed correctly when passed to the KeyframeEffectReadOnly constructor in KeyframeTimingOptions':
'KeyframeEffectReadOnly is not defined',
'composite values are parsed correctly when passed to the KeyframeEffectReadOnly constructor in property-indexed keyframes':
'KeyframeEffectReadOnly is not defined',
'composite values are parsed correctly when passed to the KeyframeEffectReadOnly constructor in regular keyframes':
'KeyframeEffectReadOnly is not defined',
'easing values are parsed correctly when passed to the KeyframeEffectReadOnly constructor in KeyframeTimingOptions':
'KeyframeEffectReadOnly is not defined',
'easing values are parsed correctly when passed to the KeyframeEffectReadOnly constructor in a property-indexed keyframe':
'KeyframeEffectReadOnly is not defined',
'easing values are parsed correctly when passed to the KeyframeEffectReadOnly constructor in regular keyframes':
'KeyframeEffectReadOnly is not defined',
'the KeyframeEffectReadOnly constructor reads keyframe properties in the expected order':
'KeyframeEffectReadOnly is not defined',
},
'test/web-platform-tests/web-animations/interfaces/KeyframeEffect/effect-easing-steps.html': {
'Test bounds point of step(4, start) easing with iterationStart 0.75 and delay':
'animation.effect.getComputedTiming is not a function',
'Test bounds point of step-end easing with iterationStart and delay':
'animation.effect.getComputedTiming is not a function',
'Test bounds point of step-end easing with iterationStart not at a transition point':
'animation.effect.getComputedTiming is not a function',
'Test bounds point of step-start easing':
'animation.effect.getComputedTiming is not a function',
'Test bounds point of step-start easing in keyframe':
'animation.effect.getComputedTiming is not a function',
'Test bounds point of step-start easing with alternate direction':
'animation.effect.getComputedTiming is not a function',
'Test bounds point of step-start easing with alternate-reverse direction':
'animation.effect.getComputedTiming is not a function',
'Test bounds point of step-start easing with compositor':
'animation.effect.getComputedTiming is not a function',
'Test bounds point of step-start easing with iterationStart and delay':
'animation.effect.getComputedTiming is not a function',
'Test bounds point of step-start easing with iterationStart and reverse direction':
'animation.effect.getComputedTiming is not a function',
'Test bounds point of step-start easing with iterationStart not at a transition point':
'animation.effect.getComputedTiming is not a function',
'Test bounds point of step-start easing with reverse direction':
'animation.effect.getComputedTiming is not a function',
},
'test/web-platform-tests/web-animations/interfaces/KeyframeEffect/getComputedTiming.html': {
'getComputedTiming().activeDuration for a non-zero duration and default iteration count':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().activeDuration for a non-zero duration and fractional iteration count':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().activeDuration for a non-zero duration and integral iteration count':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().activeDuration for a zero duration and default iteration count':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().activeDuration for a zero duration and fractional iteration count':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().activeDuration for a zero duration and infinite iteration count':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().activeDuration for a zero duration and zero iteration count':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().activeDuration for an empty KeyframeEffectOptions object':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().activeDuration for an infinite duration and default iteration count':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().activeDuration for an infinite duration and fractional iteration count':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().activeDuration for an infinite duration and infinite iteration count':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().activeDuration for an infinite duration and zero iteration count':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().activeDuration for an non-zero duration and infinite iteration count':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().activeDuration for an non-zero duration and zero iteration count':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().endTime for a non-zero duration and default iteration count':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().endTime for a non-zero duration and non-default iteration count':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().endTime for a non-zero duration and non-zero delay':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().endTime for a non-zero duration, non-zero delay and non-default iteration':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().endTime for a zero duration and negative delay':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().endTime for an empty KeyframeEffectOptions object':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().endTime for an infinite duration':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().endTime for an infinite duration and delay':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().endTime for an infinite duration and negative delay':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().endTime for an infinite iteration count':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().endTime for an non-zero duration and negative delay':
'KeyframeEffectReadOnly is not defined',
'getComputedTiming().endTime for an non-zero duration and negative delay greater than active duration':
'KeyframeEffectReadOnly is not defined',
'values of getComputedTiming() when a KeyframeEffectReadOnly is constructed by +Infinity':
'KeyframeEffectReadOnly is not defined',
'values of getComputedTiming() when a KeyframeEffectReadOnly is constructed by a double value':
'KeyframeEffectReadOnly is not defined',
'values of getComputedTiming() when a KeyframeEffectReadOnly is constructed by a forwards fill':
'KeyframeEffectReadOnly is not defined',
'values of getComputedTiming() when a KeyframeEffectReadOnly is constructed by a normal KeyframeEffectOptions object':
'KeyframeEffectReadOnly is not defined',
'values of getComputedTiming() when a KeyframeEffectReadOnly is constructed by an Infinity duration':
'KeyframeEffectReadOnly is not defined',
'values of getComputedTiming() when a KeyframeEffectReadOnly is constructed by an Infinity iterations':
'KeyframeEffectReadOnly is not defined',
'values of getComputedTiming() when a KeyframeEffectReadOnly is constructed by an auto duration':
'KeyframeEffectReadOnly is not defined',
'values of getComputedTiming() when a KeyframeEffectReadOnly is constructed by an auto fill':
'KeyframeEffectReadOnly is not defined',
'values of getComputedTiming() when a KeyframeEffectReadOnly is constructed by an empty KeyframeEffectOptions object':
'KeyframeEffectReadOnly is not defined',
'values of getComputedTiming() when a KeyframeEffectReadOnly is constructed without any KeyframeEffectOptions object':
'KeyframeEffectReadOnly is not defined',
},
'test/web-platform-tests/web-animations/interfaces/KeyframeEffect/processing-a-keyframes-argument.html': {
'non-animatable property \'animation\' is not accessed when using a keyframe sequence':
'KeyframeEffectReadOnly is not defined',