summaryrefslogtreecommitdiffstats
path: root/dom/animation/test/chrome/test_running_on_compositor.html
blob: 532c11258f03f3a2446f48331a386d5293d2ec46 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
<!doctype html>
<head>
<meta charset=utf-8>
<title>Bug 1045994 - Add a chrome-only property to inspect if an animation is
       running on the compositor or not</title>
<script type="application/javascript" src="../testharness.js"></script>
<script type="application/javascript" src="../testharnessreport.js"></script>
<script type="application/javascript" src="../testcommon.js"></script>
<style>
@keyframes anim {
  to { transform: translate(100px) }
}
@keyframes transform-starts-with-none {
    0% { transform: none }
   99% { transform: none }
  100% { transform: translate(100px) }
}
@keyframes opacity {
  to { opacity: 0 }
}
@keyframes zIndex_and_translate {
  to { z-index: 999; transform: translate(100px); }
}
@keyframes z-index {
  to { z-index: 999; }
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes rotate-and-opacity {
  from { transform: rotate(0deg); opacity: 1;}
  to { transform: rotate(360deg); opacity: 0;}
}
div {
  /* Element needs geometry to be eligible for layerization */
  width: 100px;
  height: 100px;
  background-color: white;
}
</style>
</head>
<body>
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1045994"
  target="_blank">Mozilla Bug 1045994</a>
<div id="log"></div>
<script>
'use strict';

/** Test for bug 1045994 - Add a chrome-only property to inspect if an
    animation is running on the compositor or not **/

const omtaEnabled = isOMTAEnabled();

function assert_animation_is_running_on_compositor(animation, desc) {
  assert_equals(animation.isRunningOnCompositor, omtaEnabled,
                desc + ' at ' + animation.currentTime + 'ms');
}

function assert_animation_is_not_running_on_compositor(animation, desc) {
  assert_equals(animation.isRunningOnCompositor, false,
                desc + ' at ' + animation.currentTime + 'ms');
}

promise_test(async t => {
  // FIXME: When we implement Element.animate, use that here instead of CSS
  // so that we remove any dependency on the CSS mapping.
  var div = addDiv(t, { style: 'animation: anim 100s' });
  var animation = div.getAnimations()[0];

  // If the animation starts at the current timeline time, we need to wait for
  // one more frame to avoid receiving the fake timer-based MozAfterPaint event.
  // FIXME: Bug 1419226: Drop this 'animation.ready' and 'waitForFrame'.  Once
  // MozAfterPaint is fired reliably, we just need to wait for a MozAfterPaint
  // here.
  await animation.ready;

  if (animationStartsRightNow(animation)) {
    await waitForNextFrame();
  }

  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
     'Animation reports that it is running on the compositor'
     + ' during playback');

  div.style.animationPlayState = 'paused';

  await animation.ready;

  assert_animation_is_not_running_on_compositor(animation,
     'Animation reports that it is NOT running on the compositor'
     + ' when paused');
}, '');

promise_test(async t => {
  var div = addDiv(t, { style: 'animation: z-index 100s' });
  var animation = div.getAnimations()[0];

  await waitForPaints();

  assert_animation_is_not_running_on_compositor(animation,
     'Animation reports that it is NOT running on the compositor'
     + ' for animation of "z-index"');
}, 'isRunningOnCompositor is false for animation of "z-index"');

promise_test(async t => {
  var div = addDiv(t, { style: 'animation: zIndex_and_translate 100s' });
  var animation = div.getAnimations()[0];

  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
     'Animation reports that it is running on the compositor'
      + ' when the animation has two properties, where one can run'
      + ' on the compositor, the other cannot');
}, 'isRunningOnCompositor is true if the animation has at least one ' +
   'property can run on compositor');

promise_test(async t => {
  var div = addDiv(t, { style: 'animation: anim 100s' });
  var animation = div.getAnimations()[0];

  await waitForPaints();

  animation.pause();
  await animation.ready;

  assert_animation_is_not_running_on_compositor(animation,
     'Animation reports that it is NOT running on the compositor'
     + ' when animation.pause() is called');
}, 'isRunningOnCompositor is false when the animation.pause() is called');

promise_test(async t => {
  var div = addDiv(t, { style: 'animation: anim 100s' });
  var animation = div.getAnimations()[0];

  await waitForPaints();

  animation.finish();
  assert_animation_is_not_running_on_compositor(animation,
     'Animation reports that it is NOT running on the compositor'
     + ' immediately after animation.finish() is called');
  // Check that we don't set the flag back again on the next tick.
  await waitForFrame();

  assert_animation_is_not_running_on_compositor(animation,
     'Animation reports that it is NOT running on the compositor'
     + ' on the next tick after animation.finish() is called');
}, 'isRunningOnCompositor is false when the animation.finish() is called');

promise_test(async t => {
  var div = addDiv(t, { style: 'animation: anim 100s' });
  var animation = div.getAnimations()[0];

  await waitForPaints();

  animation.currentTime = 100 * MS_PER_SEC;
  assert_animation_is_not_running_on_compositor(animation,
     'Animation reports that it is NOT running on the compositor'
     + ' immediately after manually seeking the animation to the end');
  // Check that we don't set the flag back again on the next tick.
  await waitForFrame();

  assert_animation_is_not_running_on_compositor(animation,
     'Animation reports that it is NOT running on the compositor'
     + ' on the next tick after manually seeking the animation to the end');
}, 'isRunningOnCompositor is false when manually seeking the animation to ' +
   'the end');

promise_test(async t => {
  var div = addDiv(t, { style: 'animation: anim 100s' });
  var animation = div.getAnimations()[0];

  await waitForPaints();

  animation.cancel();
  assert_animation_is_not_running_on_compositor(animation,
     'Animation reports that it is NOT running on the compositor'
     + ' immediately after animation.cancel() is called');
  // Check that we don't set the flag back again on the next tick.
  await waitForFrame();

  assert_animation_is_not_running_on_compositor(animation,
     'Animation reports that it is NOT running on the compositor'
     + ' on the next tick after animation.cancel() is called');
}, 'isRunningOnCompositor is false when animation.cancel() is called');

// This is to test that we don't simply clobber the flag when ticking
// animations and then set it again during painting.
promise_test(async t => {
  var div = addDiv(t, { style: 'animation: anim 100s' });
  var animation = div.getAnimations()[0];

  await waitForPaints();

  await new Promise(resolve => {
    window.requestAnimationFrame(() => {
      t.step(() => {
        assert_animation_is_running_on_compositor(animation,
          'Animation reports that it is running on the compositor'
           + ' in requestAnimationFrame callback');
      });

      resolve();
    });
  });
}, 'isRunningOnCompositor is true in requestAnimationFrame callback');

promise_test(async t => {
  var div = addDiv(t, { style: 'animation: anim 100s' });
  var animation = div.getAnimations()[0];

  await waitForPaints();

  await new Promise(resolve => {
    var observer = new MutationObserver(records => {
      var changedAnimation;

      records.forEach(record => {
        changedAnimation =
          record.changedAnimations.find(changedAnim => {
            return changedAnim == animation;
          });
      });

      t.step(() => {
        assert_true(!!changedAnimation, 'The animation should be recorded '
          + 'as one of the changedAnimations');

        assert_animation_is_running_on_compositor(animation,
          'Animation reports that it is running on the compositor'
           + ' in MutationObserver callback');
      });

      resolve();
    });
    observer.observe(div, { animations: true, subtree: false });
    t.add_cleanup(() => {
      observer.disconnect();
    });
    div.style.animationDuration = "200s";
  });
}, 'isRunningOnCompositor is true in MutationObserver callback');

// This is to test that we don't temporarily clear the flag when forcing
// an unthrottled sample.
promise_test(async t => {
  var div = addDiv(t, { style: 'animation: rotate 100s' });
  var animation = div.getAnimations()[0];

  await waitForPaints();

  await new Promise(resolve => {
    var timeAtStart = window.performance.now();
    function handleFrame() {
      t.step(() => {
        assert_animation_is_running_on_compositor(animation,
          'Animation reports that it is running on the compositor'
           + ' in requestAnimationFrame callback');
      });

      // we have to wait at least 200ms because this animation is
      // unthrottled on every 200ms.
      // See https://hg.mozilla.org/mozilla-central/file/cafb1c90f794/layout/style/AnimationCommon.cpp#l863
      if (window.performance.now() - timeAtStart > 200) {
        resolve();
        return;
      }
      window.requestAnimationFrame(handleFrame);
    }
    window.requestAnimationFrame(handleFrame);
  });
}, 'isRunningOnCompositor remains true in requestAnimationFrameCallback for ' +
   'overflow animation');

promise_test(async t => {
  var div = addDiv(t, { style: 'transition: opacity 100s; opacity: 1' });

  getComputedStyle(div).opacity;

  div.style.opacity = 0;
  var animation = div.getAnimations()[0];

  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
     'Transition reports that it is running on the compositor'
     + ' during playback for opacity transition');
}, 'isRunningOnCompositor for transitions');

promise_test(async t => {
  var div = addDiv(t, { style: 'animation: rotate-and-opacity 100s; ' +
                               'backface-visibility: hidden; ' +
                               'transform: none !important;' });
  var animation = div.getAnimations()[0];

  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
     'If an animation has a property that can run on the compositor and a '
     + 'property that cannot (due to Gecko limitations) but where the latter'
     + 'property is overridden in the CSS cascade, the animation should '
     + 'still report that it is running on the compositor');
}, 'isRunningOnCompositor is true when a property that would otherwise block ' +
   'running on the compositor is overridden in the CSS cascade');

promise_test(async t => {
  var animation = addDivAndAnimate(t,
                                   {},
                                   { opacity: [ 0, 1 ] }, 200 * MS_PER_SEC);

  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'Animation reports that it is running on the compositor');

  animation.currentTime = 150 * MS_PER_SEC;
  animation.effect.updateTiming({ duration: 100 * MS_PER_SEC });

  assert_animation_is_not_running_on_compositor(animation,
     'Animation reports that it is NOT running on the compositor'
     + ' when the animation is set a shorter duration than current time');
}, 'animation is immediately removed from compositor' +
   'when the duration is made shorter than the current time');

promise_test(async t => {
  var animation = addDivAndAnimate(t,
                                   {},
                                   { opacity: [ 0, 1 ] }, 100 * MS_PER_SEC);

  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'Animation reports that it is running on the compositor');

  animation.currentTime = 500 * MS_PER_SEC;

  assert_animation_is_not_running_on_compositor(animation,
    'Animation reports that it is NOT running on the compositor'
    + ' when finished');

  animation.effect.updateTiming({ duration: 1000 * MS_PER_SEC });
  await waitForFrame();

  assert_animation_is_running_on_compositor(animation,
    'Animation reports that it is running on the compositor'
    + ' when restarted');
}, 'animation is added to compositor' +
   ' when the duration is made longer than the current time');

promise_test(async t => {
  var animation = addDivAndAnimate(t,
                                   {},
                                   { opacity: [ 0, 1 ] }, 100 * MS_PER_SEC);

  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'Animation reports that it is running on the compositor');

  animation.effect.updateTiming({ endDelay: 100 * MS_PER_SEC });

  assert_animation_is_running_on_compositor(animation,
    'Animation reports that it is running on the compositor'
    + ' when endDelay is changed');

  animation.currentTime = 110 * MS_PER_SEC;
  await waitForFrame();

  assert_animation_is_not_running_on_compositor(animation,
    'Animation reports that it is NOT running on the compositor'
    + ' when currentTime is during endDelay');
}, 'animation is removed from compositor' +
   ' when current time is made longer than the duration even during endDelay');

promise_test(async t => {
  var animation = addDivAndAnimate(t,
                                   {},
                                   { opacity: [ 0, 1 ] }, 100 * MS_PER_SEC);

  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'Animation reports that it is running on the compositor');

  animation.effect.updateTiming({ endDelay: -200 * MS_PER_SEC });
  await waitForFrame();

  assert_animation_is_not_running_on_compositor(animation,
    'Animation reports that it is NOT running on the compositor'
    + ' when endTime is negative value');
}, 'animation is removed from compositor' +
   ' when endTime is negative value');

promise_test(async t => {
  var animation = addDivAndAnimate(t,
                                   {},
                                   { opacity: [ 0, 1 ] }, 200 * MS_PER_SEC);

  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'Animation reports that it is running on the compositor');

  animation.effect.updateTiming({ endDelay: -100 * MS_PER_SEC });
  await waitForFrame();

  assert_animation_is_running_on_compositor(animation,
    'Animation reports that it is running on the compositor'
    + ' when endTime is positive and endDelay is negative');
  animation.currentTime = 110 * MS_PER_SEC;
  await waitForFrame();

  assert_animation_is_not_running_on_compositor(animation,
    'Animation reports that it is NOT running on the compositor'
    + ' when currentTime is after endTime');
}, 'animation is NOT running on compositor' +
   ' when endTime is positive and endDelay is negative');

promise_test(async t => {
  var effect = new KeyframeEffect(null,
                                  { opacity: [ 0, 1 ] },
                                  100 * MS_PER_SEC);
  var animation = new Animation(effect, document.timeline);
  animation.play();

  var div = addDiv(t);

  await waitForPaints();

  assert_animation_is_not_running_on_compositor(animation,
                'Animation with null target reports that it is not running ' +
                'on the compositor');

  animation.effect.target = div;
  await waitForFrame();

  assert_animation_is_running_on_compositor(animation,
                'Animation reports that it is running on the compositor ' +
                'after setting a valid target');
}, 'animation is added to the compositor when setting a valid target');

promise_test(async t => {
  var div = addDiv(t);
  var animation = div.animate({ opacity: [ 0, 1 ] }, 100 * MS_PER_SEC);

  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
                'Animation reports that it is running on the compositor');

  animation.effect.target = null;
  assert_animation_is_not_running_on_compositor(animation,
                'Animation reports that it is NOT running on the ' +
                'compositor after setting null target');
}, 'animation is removed from the compositor when setting null target');

promise_test(async t => {
  var div = addDiv(t);
  var animation = div.animate({ opacity: [ 0, 1 ] },
                              { duration: 100 * MS_PER_SEC,
                                delay: 100 * MS_PER_SEC,
                                fill: 'backwards' });

  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
                'Animation with fill:backwards in delay phase reports ' +
                'that it is running on the compositor');

  animation.currentTime = 100 * MS_PER_SEC;
  await waitForFrame();

  assert_animation_is_running_on_compositor(animation,
      'Animation with fill:backwards in delay phase reports ' +
      'that it is running on the compositor after delay phase');
}, 'animation with fill:backwards in delay phase is running on the ' +
   ' compositor while it is in delay phase');

promise_test(async t => {
  const animation = addDiv(t).animate({ opacity: [ 0, 1 ] }, 100 * MS_PER_SEC);
  animation.playbackRate = -1;
  animation.currentTime = 200 * MS_PER_SEC;

  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
                'Animation with negative playback rate is runnning on the'
                + ' compositor even before it reaches the active interval');
}, 'animation with negative playback rate is sent to the compositor even in'
   + ' after phase');

promise_test(async t => {
  var div = addDiv(t);
  var animation = div.animate([{ opacity: 1, offset: 0 },
                               { opacity: 1, offset: 0.99 },
                               { opacity: 0, offset: 1 }], 100 * MS_PER_SEC);

  var another = addDiv(t);

  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
                'Opacity animation on a 100% opacity keyframe reports ' +
                'that it is running on the compositor from the begining');

  animation.effect.target = another;
  await waitForFrame();

  assert_animation_is_running_on_compositor(animation,
                'Opacity animation on a 100% opacity keyframe keeps ' +
                'running on the compositor after changing the target ' +
                'element');
}, '100% opacity animations with keeps running on the ' +
   'compositor after changing the target element');

promise_test(async t => {
  var div = addDiv(t);
  var animation = div.animate({ color: ['red', 'black'] }, 100 * MS_PER_SEC);

  await waitForPaints();

  assert_animation_is_not_running_on_compositor(animation,
                'Color animation reports that it is not running on the ' +
                'compositor');

  animation.effect.setKeyframes([{ opacity: 1, offset: 0 },
                                 { opacity: 1, offset: 0.99 },
                                 { opacity: 0, offset: 1 }]);
  await waitForFrame();

  assert_animation_is_running_on_compositor(animation,
                '100% opacity animation set by using setKeyframes reports ' +
                'that it is running on the compositor');
}, '100% opacity animation set up by converting an existing animation with ' +
   'cannot be run on the compositor, is running on the compositor');

promise_test(async t => {
  var div = addDiv(t);
  var animation = div.animate({ color: ['red', 'black'] }, 100 * MS_PER_SEC);
  var effect = new KeyframeEffect(div,
                                  [{ opacity: 1, offset: 0 },
                                   { opacity: 1, offset: 0.99 },
                                   { opacity: 0, offset: 1 }],
                                  100 * MS_PER_SEC);

  await waitForPaints();

  assert_animation_is_not_running_on_compositor(animation,
                'Color animation reports that it is not running on the ' +
                'compositor');

  animation.effect = effect;
  await waitForFrame();

  assert_animation_is_running_on_compositor(animation,
                '100% opacity animation set up by changing effects reports ' +
                'that it is running on the compositor');
}, '100% opacity animation set up by changing the effects on an existing ' +
   'animation which cannot be run on the compositor, is running on the ' +
   'compositor');

promise_test(async t => {
  var div = addDiv(t, { style: "opacity: 1 ! important" });

  var animation = div.animate({ opacity: [0, 1] }, 100 * MS_PER_SEC);

  await waitForPaints();

  assert_animation_is_not_running_on_compositor(animation,
    'Opacity animation on an element which has 100% opacity style with ' +
    '!important flag reports that it is not running on the compositor');
  // Clear important flag from the opacity style on the target element.
  div.style.setProperty("opacity", "1", "");
  await waitForFrame();

  assert_animation_is_running_on_compositor(animation,
    'Opacity animation reports that it is running on the compositor after '
    + 'clearing the !important flag');
}, 'Clearing *important* opacity style on the target element sends the ' +
   'animation to the compositor');

promise_test(async t => {
  var div = addDiv(t);
  var lowerAnimation = div.animate({ opacity: [1, 0] }, 100 * MS_PER_SEC);
  var higherAnimation = div.animate({ opacity: [0, 1] }, 100 * MS_PER_SEC);

  await waitForPaints();

  assert_animation_is_running_on_compositor(higherAnimation,
                'A higher-priority opacity animation on an element ' +
                'reports that it is running on the compositor');
  assert_animation_is_running_on_compositor(lowerAnimation,
                'A lower-priority opacity animation on the same ' +
                'element also reports that it is running on the compositor');
}, 'Opacity animations on the same element run on the compositor');

promise_test(async t => {
  var div = addDiv(t, { style: 'transition: opacity 100s; opacity: 1' });

  getComputedStyle(div).opacity;

  div.style.opacity = 0;
  getComputedStyle(div).opacity;

  var transition = div.getAnimations()[0];
  var animation = div.animate({ opacity: [0, 1] }, 100 * MS_PER_SEC);

  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
                'An opacity animation on an element reports that' +
                'that it is running on the compositor');
  assert_animation_is_running_on_compositor(transition,
                'An opacity transition on the same element reports that ' +
                'it is running on the compositor');
}, 'Both of transition and script animation on the same element run on the ' +
   'compositor');

promise_test(async t => {
  var div = addDiv(t);
  var importantOpacityElement = addDiv(t, { style: "opacity: 1 ! important" });

  var animation = div.animate({ opacity: [1, 0] }, 100 * MS_PER_SEC);

  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
                'Opacity animation on an element reports ' +
                'that it is running on the compositor');

  animation.effect.target = null;
  await waitForFrame();

  assert_animation_is_not_running_on_compositor(animation,
                'Animation is no longer running on the compositor after ' +
                'removing from the element');
  animation.effect.target = importantOpacityElement;
  await waitForFrame();

  assert_animation_is_not_running_on_compositor(animation,
                'Animation is NOT running on the compositor even after ' +
                'being applied to a different element which has an ' +
                '!important opacity declaration');
}, 'Animation continues not running on the compositor after being ' +
   'applied to an element which has an important declaration and ' +
   'having previously been temporarily associated with no target element');

promise_test(async t => {
  var div = addDiv(t);
  var another = addDiv(t);

  var lowerAnimation = div.animate({ opacity: [1, 0] }, 100 * MS_PER_SEC);
  var higherAnimation = another.animate({ opacity: [0, 1] }, 100 * MS_PER_SEC);

  await waitForPaints();

  assert_animation_is_running_on_compositor(lowerAnimation,
                'An opacity animation on an element reports that ' +
                'it is running on the compositor');
  assert_animation_is_running_on_compositor(higherAnimation,
                'Opacity animation on a different element reports ' +
                'that it is running on the compositor');

  lowerAnimation.effect.target = null;
  await waitForFrame();

  assert_animation_is_not_running_on_compositor(lowerAnimation,
                'Animation is no longer running on the compositor after ' +
                'being removed from the element');
  lowerAnimation.effect.target = another;
  await waitForFrame();

  assert_animation_is_running_on_compositor(lowerAnimation,
                'A lower-priority animation begins running ' +
                'on the compositor after being applied to an element ' +
                'which has a higher-priority animation');
  assert_animation_is_running_on_compositor(higherAnimation,
                'A higher-priority animation continues to run on the ' +
                'compositor even after a lower-priority animation is ' +
                'applied to the same element');
}, 'Animation begins running on the compositor after being applied ' +
   'to an element which has a higher-priority animation and after ' +
   'being temporarily associated with no target element');

promise_test(async t => {
  var div = addDiv(t);
  var another = addDiv(t);

  var lowerAnimation = div.animate({ opacity: [1, 0] }, 100 * MS_PER_SEC);
  var higherAnimation = another.animate({ opacity: [0, 1] }, 100 * MS_PER_SEC);

  await waitForPaints();

  assert_animation_is_running_on_compositor(lowerAnimation,
                'An opacity animation on an element reports that ' +
                'it is running on the compositor');
  assert_animation_is_running_on_compositor(higherAnimation,
                'Opacity animation on a different element reports ' +
                'that it is running on the compositor');

  higherAnimation.effect.target = null;
  await waitForFrame();

  assert_animation_is_not_running_on_compositor(higherAnimation,
                'Animation is no longer running on the compositor after ' +
                'being removed from the element');
  higherAnimation.effect.target = div;
  await waitForFrame();

  assert_animation_is_running_on_compositor(lowerAnimation,
                'Animation continues running on the compositor after ' +
                'a higher-priority animation applied to the same element');
  assert_animation_is_running_on_compositor(higherAnimation,
                'A higher-priority animation begins to running on the ' +
                'compositor after being applied to an element which has ' +
                'a lower-priority-animation');
}, 'Animation begins running on the compositor after being applied ' +
   'to an element which has a lower-priority animation once after ' +
   'disassociating with an element');

var delayPhaseTests = [
  {
    desc: 'script animation of opacity',
    setupAnimation: t => {
      return addDiv(t).animate(
        { opacity: [0, 1] },
        { delay: 100 * MS_PER_SEC, duration: 100 * MS_PER_SEC });
    },
  },
  {
    desc: 'script animation of transform',
    setupAnimation: t => {
      return addDiv(t).animate(
        { transform: ['translateX(0px)', 'translateX(100px)'] },
        { delay: 100 * MS_PER_SEC, duration: 100 * MS_PER_SEC });
    },
  },
  {
    desc: 'CSS animation of opacity',
    setupAnimation: t => {
      return addDiv(t, { style: 'animation: opacity 100s 100s' })
        .getAnimations()[0];
    },
  },
  {
    desc: 'CSS animation of transform',
    setupAnimation: t => {
      return addDiv(t, { style: 'animation: anim 100s 100s' })
        .getAnimations()[0];
    },
  },
  {
    desc: 'CSS transition of opacity',
    setupAnimation: t => {
      var div = addDiv(t, { style: 'transition: opacity 100s 100s' });
      getComputedStyle(div).opacity;

      div.style.opacity = 0;
      return div.getAnimations()[0];
    },
  },
  {
    desc: 'CSS transition of transform',
    setupAnimation: t => {
      var div = addDiv(t, { style: 'transition: transform 100s 100s' });
      getComputedStyle(div).transform;

      div.style.transform = 'translateX(100px)';
      return div.getAnimations()[0];
    },
  },
];

delayPhaseTests.forEach(test => {
  promise_test(async t => {
    var animation = test.setupAnimation(t);

    await waitForPaints();

    assert_animation_is_running_on_compositor(animation,
       test.desc + ' reports that it is running on the '
       + 'compositor even though it is in the delay phase');
  }, 'isRunningOnCompositor for ' + test.desc + ' is true even though ' +
     'it is in the delay phase');
});

// The purpose of thie test cases is to check that
// NS_FRAME_MAY_BE_TRANSFORMED flag on the associated nsIFrame persists
// after transform style on the frame is removed.
var delayPhaseWithTransformStyleTests = [
  {
    desc: 'script animation of transform with transform style',
    setupAnimation: t => {
      return addDiv(t, { style: 'transform: translateX(10px)' }).animate(
        { transform: ['translateX(0px)', 'translateX(100px)'] },
        { delay: 100 * MS_PER_SEC, duration: 100 * MS_PER_SEC });
    },
  },
  {
    desc: 'CSS animation of transform with transform style',
    setupAnimation: t => {
      return addDiv(t, { style: 'animation: anim 100s 100s;' +
                                'transform: translateX(10px)' })
        .getAnimations()[0];
    },
  },
  {
    desc: 'CSS transition of transform with transform style',
    setupAnimation: t => {
      var div = addDiv(t, { style: 'transition: transform 100s 100s;' +
                                   'transform: translateX(10px)'});
      getComputedStyle(div).transform;

      div.style.transform = 'translateX(100px)';
      return div.getAnimations()[0];
    },
  },
];

delayPhaseWithTransformStyleTests.forEach(test => {
  promise_test(async t => {
    var animation = test.setupAnimation(t);

    await waitForPaints();

    assert_animation_is_running_on_compositor(animation,
       test.desc + ' reports that it is running on the '
       + 'compositor even though it is in the delay phase');

    // Remove the initial transform style during delay phase.
    animation.effect.target.style.transform = 'none';
    await animation.ready;

    assert_animation_is_running_on_compositor(animation,
       test.desc + ' reports that it keeps running on the '
       + 'compositor after removing the initial transform style');
  }, 'isRunningOnCompositor for ' + test.desc + ' is true after removing ' +
     'the initial transform style during the delay phase');
});

var startsWithNoneTests = [
  {
    desc: 'script animation of transform starts with transform:none segment',
    setupAnimation: t => {
      return addDiv(t).animate(
        { transform: ['none', 'none', 'translateX(100px)'] }, 100 * MS_PER_SEC);
    },
  },
  {
    desc: 'CSS animation of transform starts with transform:none segment',
    setupAnimation: t => {
      return addDiv(t,
        { style: 'animation: transform-starts-with-none 100s 100s' })
          .getAnimations()[0];
    },
  },
];

startsWithNoneTests.forEach(test => {
  promise_test(async t => {
    var animation = test.setupAnimation(t);

    await waitForPaints();

    assert_animation_is_running_on_compositor(animation,
       test.desc + ' reports that it is running on the '
       + 'compositor even though it is in transform:none segment');
  }, 'isRunningOnCompositor for ' + test.desc + ' is true even though ' +
     'it is in transform:none segment');
});

promise_test(async t => {
  var div = addDiv(t, { style: 'opacity: 1 ! important' });

  var animation = div.animate(
    { opacity: [0, 1] },
    { delay: 100 * MS_PER_SEC, duration: 100 * MS_PER_SEC });

  await waitForPaints();

  assert_animation_is_not_running_on_compositor(animation,
    'Opacity animation on an element which has opacity:1 important style'
    + 'reports that it is not running on the compositor');
  // Clear the opacity style on the target element.
  div.style.setProperty("opacity", "1", "");
  await waitForFrame();

  assert_animation_is_running_on_compositor(animation,
    'Opacity animations reports that it is running on the compositor after '
    + 'clearing the opacity style on the element');
}, 'Clearing *important* opacity style on the target element sends the ' +
   'animation to the compositor even if the animation is in the delay phase');

promise_test(async t => {
  var opaqueDiv = addDiv(t, { style: 'opacity: 1 ! important' });
  var anotherDiv = addDiv(t);

  var animation = opaqueDiv.animate(
    { opacity: [0, 1] },
    { delay: 100 * MS_PER_SEC, duration: 100 * MS_PER_SEC });

  await waitForPaints();

  assert_animation_is_not_running_on_compositor(animation,
    'Opacity animation on an element which has opacity:1 important style'
    + 'reports that it is not running on the compositor');
  // Changing target element to another element which has no opacity style.
  animation.effect.target = anotherDiv;
  await waitForFrame();

  assert_animation_is_running_on_compositor(animation,
    'Opacity animations reports that it is running on the compositor after '
    + 'changing the target element to another elemenent having no '
    + 'opacity style');
}, 'Changing target element of opacity animation sends the animation to the ' +
   'the compositor even if the animation is in the delay phase');

promise_test(async t => {
  var animation =
    addDivAndAnimate(t,
                     {},
                     { width: ['100px', '200px'] },
                     { duration: 100 * MS_PER_SEC, delay: 100 * MS_PER_SEC });

  await waitForPaints();

  assert_animation_is_not_running_on_compositor(animation,
    'Width animation reports that it is not running on the compositor '
    + 'in the delay phase');
  // Changing to property runnable on the compositor.
  animation.effect.setKeyframes({ opacity: [0, 1] });
  await waitForFrame();

  assert_animation_is_running_on_compositor(animation,
    'Opacity animation reports that it is running on the compositor '
    + 'after changing the property from width property in the delay phase');
}, 'Dynamic change to a property runnable on the compositor ' +
   'in the delay phase');

promise_test(async t => {
  var div = addDiv(t, { style: 'transition: opacity 100s; ' +
                               'opacity: 0 !important' });
  getComputedStyle(div).opacity;

  div.style.setProperty('opacity', '1', 'important');
  getComputedStyle(div).opacity;

  var animation = div.getAnimations()[0];

  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
     'Transition reports that it is running on the compositor even if the ' +
     'property is overridden by an !important rule');
}, 'Transitions override important rules');

promise_test(async t => {
  var div = addDiv(t, { style: 'transition: opacity 100s; ' +
                               'opacity: 0 !important' });
  getComputedStyle(div).opacity;

  div.animate({ opacity: [ 0, 1 ] }, 100 * MS_PER_SEC);

  div.style.setProperty('opacity', '1', 'important');
  getComputedStyle(div).opacity;

  var [transition, animation] = div.getAnimations();

  await waitForPaints();

  assert_animation_is_not_running_on_compositor(transition,
     'Transition suppressed by an animation which is overridden by an ' +
     '!important rule reports that it is NOT running on the compositor');
  assert_animation_is_not_running_on_compositor(animation,
     'Animation overridden by an !important rule reports that it is ' +
     'NOT running on the compositor');
}, 'Neither transition nor animation does run on the compositor if the ' +
   'property is overridden by an !important rule');

promise_test(async t => {
  var div = addDiv(t, { style: 'display: table' });
  var animation =
    div.animate({ transform: ['rotate(0deg)', 'rotate(360deg)'] },
                100 * MS_PER_SEC);

  await waitForAnimationReadyToRestyle(animation);

  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'Transform animation on display:table element should be running on the'
    + ' compositor');
}, 'Transform animation on display:table element runs on the compositor');

promise_test(async t => {
  const div = addDiv(t, { style: 'display: table' });
  const animation = div.animate(null, 100 * MS_PER_SEC);
  const effect = new KeyframeEffect(div,
                                    { transform: ['none', 'none']},
                                    100 * MS_PER_SEC);

  await waitForAnimationReadyToRestyle(animation);

  animation.effect = effect;

  await waitForNextFrame();
  await waitForPaints();

  assert_animation_is_running_on_compositor(
    animation,
    'Transform animation on table element should be running on the compositor'
  );
}, 'Empty transform effect assigned after the fact to display:table content'
   + ' runs on the compositor');

promise_test(async t => {
  const div = addDiv(t);
  const animation = div.animate({ backgroundColor: ['blue', 'green'] },
                                100 * MS_PER_SEC);

  await waitForAnimationReadyToRestyle(animation);
  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'background-color animation should be running on the compositor');
}, 'background-color animation runs on the compositor');

promise_test(async t => {
  const div = addDiv(t);
  const animation = div.animate({ backgroundColor: ['blue', 'green'] },
                                100 * MS_PER_SEC);

  await waitForAnimationReadyToRestyle(animation);
  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'background-color animation should be running on the compositor');

  // Add a red opaque background image covering the background color animation.
  div.style.backgroundImage =
    'url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64' +
    'paAAAAG0lEQVR42mP8z0A%2BYKJA76jmUc2jmkc1U0EzACKcASfOgGoMAAAAAElFTkSuQmCC)';

  await waitForAnimationReadyToRestyle(animation);
  await waitForPaints();

  // Bug 1712246. We should optimize this case eventually.
  //assert_animation_is_not_running_on_compositor(animation,
  //  'Opaque background image stops background-color animations from running ' +
  //  'on the compositor');
}, 'Opaque background image stops background-color animations from running ' +
   ' on the compositor');

promise_test(async t => {
  await SpecialPowers.pushPrefEnv({
    set: [["gfx.omta.background-color", false]]
  });

  const div = addDiv(t);
  const animation = div.animate({ backgroundColor: ['blue', 'green'] },
                                100 * MS_PER_SEC);

  await waitForAnimationReadyToRestyle(animation);
  await waitForPaints();

  assert_animation_is_not_running_on_compositor(animation,
    'background-color animation should NOT be running on the compositor ' +
    'if the pref is disabled');
}, 'background-color animation does not run on the compositor if the pref ' +
   'is disabled');

promise_test(async t => {
  const div = addDiv(t);
  const animation = div.animate({ translate: ['0px', '100px'] },
                                100 * MS_PER_SEC);

  await waitForAnimationReadyToRestyle(animation);
  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'translate animation should be running on the compositor');
}, 'translate animation runs on the compositor');

promise_test(async t => {
  const div = addDiv(t);
  const animation = div.animate({ rotate: ['0deg', '45deg'] },
                                100 * MS_PER_SEC);

  await waitForAnimationReadyToRestyle(animation);
  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'rotate animation should be running on the compositor');
}, 'rotate animation runs on the compositor');

promise_test(async t => {
  const div = addDiv(t);
  const animation = div.animate({ scale: ['1 1', '2 2'] },
                                100 * MS_PER_SEC);

  await waitForAnimationReadyToRestyle(animation);
  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'scale animation should be running on the compositor');
}, 'scale animation runs on the compositor');

promise_test(async t => {
  const div = addDiv(t);
  const animation = div.animate({ translate: ['0px', '100px'],
                                  rotate: ['0deg', '45deg'],
                                  transform: ['translate(20px)',
                                              'translate(30px)'] },
                                100 * MS_PER_SEC);

  await waitForAnimationReadyToRestyle(animation);
  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'multiple transform-like properties animation should be running on the ' +
    'compositor');

  const properties = animation.effect.getProperties();
  properties.forEach(property => {
    assert_true(property.runningOnCompositor,
                property.property + ' is running on the compositor');
  });
}, 'Multiple transform-like properties animation runs on the compositor');

promise_test(async t => {
  const div = addDiv(t);
  const animation = div.animate({ offsetPath: ['none', 'none'] },
                                100 * MS_PER_SEC);

  await waitForAnimationReadyToRestyle(animation);
  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'offset-path animation should be running on the compositor even if ' +
    'it is always none');
}, 'offset-path none animation runs on the compositor');

promise_test(async t => {
  const div = addDiv(t);
  const animation = div.animate({ offsetPath: ['path("M0 0l100 100")',
                                               'path("M0 0l200 200")'] },
                                100 * MS_PER_SEC);

  await waitForAnimationReadyToRestyle(animation);
  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'offset-path animation should be running on the compositor');
}, 'offset-path animation runs on the compositor');

promise_test(async t => {
  const div = addDiv(t);
  const animation = div.animate({ offsetDistance: ['0%', '100%'] },
                                100 * MS_PER_SEC);

  await waitForAnimationReadyToRestyle(animation);
  await waitForPaints();

  assert_animation_is_not_running_on_compositor(animation,
    'offset-distance animation is not running on the compositor because ' +
    'offset-path is none');

  const newAnim = div.animate({ offsetPath: ['None', 'None'] },
                              100 * MS_PER_SEC);
  await waitForAnimationReadyToRestyle(newAnim);
  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'offset-distance animation should be running on the compositor');
  assert_animation_is_running_on_compositor(newAnim,
    'new added offset-path animation should be running on the compositor');
}, 'offset-distance animation runs on the compositor');

promise_test(async t => {
  const div = addDiv(t);
  const animation = div.animate({ offsetRotate: ['0deg', '45deg'] },
                                100 * MS_PER_SEC);

  await waitForAnimationReadyToRestyle(animation);
  await waitForPaints();

  assert_animation_is_not_running_on_compositor(animation,
    'offset-rotate animation is not running on the compositor because ' +
    'offset-path is none');

  const newAnim = div.animate({ offsetPath: ['None', 'None'] },
                              100 * MS_PER_SEC);
  await waitForAnimationReadyToRestyle(newAnim);
  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'offset-rotate animation should be running on the compositor');
  assert_animation_is_running_on_compositor(newAnim,
    'new added offset-path animation should be running on the compositor');
}, 'offset-rotate animation runs on the compositor');

promise_test(async t => {
  const div = addDiv(t);
  const animation = div.animate({ offsetAnchor: ['0% 0%', '100% 100%'] },
                                100 * MS_PER_SEC);

  await waitForAnimationReadyToRestyle(animation);
  await waitForPaints();

  assert_animation_is_not_running_on_compositor(animation,
    'offset-anchor animation is not running on the compositor because ' +
    'offset-path is none');

  const newAnim = div.animate({ offsetPath: ['None', 'None'] },
                              100 * MS_PER_SEC);
  await waitForAnimationReadyToRestyle(newAnim);
  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'offset-anchor animation should be running on the compositor');
  assert_animation_is_running_on_compositor(newAnim,
    'new added offset-path animation should be running on the compositor');
}, 'offset-anchor animation runs on the compositor');

promise_test(async t => {
  const div = addDiv(t);
  const animation = div.animate({ translate: ['0px', '100px'],
                                  rotate: ['0deg', '45deg'],
                                  transform: ['translate(0px)',
                                              'translate(100px)'],
                                  offsetDistance: ['0%', '100%'] },
                                100 * MS_PER_SEC);
  await waitForAnimationReadyToRestyle(animation);
  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'Animation is running on the compositor even though we do not have ' +
    'offset-path');

  div.style.offsetPath = 'path("M50 0v100")';
  getComputedStyle(div).offsetPath;

  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'Animation is running on the compositor');

}, 'Multiple transform-like properties (include motion-path) animation runs ' +
   'on the compositor');

promise_test(async t => {
  const div = addDiv(t);
  const animation = div.animate({ translate: ['0px', '100px'],
                                  rotate: ['0deg', '45deg'],
                                  transform: ['translate(20px)',
                                              'translate(30px)'],
                                  offsetDistance: ['0%', '100%'] },
                                100 * MS_PER_SEC);

  div.style.setProperty('translate', '50px', 'important');
  getComputedStyle(div).translate;

  await waitForAnimationReadyToRestyle(animation);
  await waitForPaints();

  assert_animation_is_not_running_on_compositor(animation,
    'Animation overridden by an !important rule reports that it is ' +
    'NOT running on the compositor');

  const properties = animation.effect.getProperties();
  properties.forEach(property => {
    assert_true(!property.runningOnCompositor,
                property.property + ' is not running on the compositor');
  });
}, 'Multiple transform-like properties animation does not runs on the ' +
   'compositor because one of the transform-like property is overridden ' +
   'by an !important rule');

// FIXME:  Bug 1593106: We should still run the animations on the compositor if
// offset-* doesn't have any effect.
promise_test(async t => {
  const div = addDiv(t);
  const animation = div.animate({ translate: ['0px', '100px'],
                                  rotate: ['0deg', '45deg'],
                                  transform: ['translate(0px)',
                                              'translate(100px)'],
                                  offsetDistance: ['0%', '100%'] },
                                100 * MS_PER_SEC);

  div.style.setProperty('offset-distance', '50%', 'important');
  getComputedStyle(div).offsetDistance;

  await waitForAnimationReadyToRestyle(animation);
  await waitForPaints();

  assert_animation_is_not_running_on_compositor(animation,
    'Animation overridden by an !important rule reports that it is ' +
    'NOT running on the compositor');

  const properties = animation.effect.getProperties();
  properties.forEach(property => {
    assert_true(!property.runningOnCompositor,
                property.property + ' is not running on the compositor');
  });
}, 'Multiple transform-like properties animation does not runs on the ' +
   'compositor because one of the offset-* property is overridden ' +
   'by an !important rule');

promise_test(async t => {
  const div = addDiv(t);
  const animation = div.animate({ rotate: ['0deg', '45deg'],
                                  transform: ['translate(20px)',
                                              'translate(30px)'],
                                  offsetDistance: ['0%', '100%'] },
                                100 * MS_PER_SEC);

  div.style.setProperty('translate', '50px', 'important');
  getComputedStyle(div).translate;

  await waitForAnimationReadyToRestyle(animation);
  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'Animation is still running on the compositor');

  const properties = animation.effect.getProperties();
  properties.forEach(property => {
    assert_true(property.runningOnCompositor,
                property.property + ' is running on the compositor');
  });
}, 'Multiple transform-like properties animation still runs on the ' +
   'compositor because the overridden-by-!important property does not have ' +
   'animation');

promise_test(async t => {
  // We should run the animations on the compositor for this case:
  // 1. A transition of 'translate'
  // 2. An !important rule on 'translate'
  // 3. An animation of 'scale'
  const div = addDiv(t, { style: 'translate: 100px !important;' });
  const animation = div.animate({ rotate: ['0deg', '45deg'] },
                                100 * MS_PER_SEC);
  div.style.transition = 'translate 100s';
  getComputedStyle(div).transition;

  await waitForAnimationReadyToRestyle(animation);
  await waitForPaints();

  assert_animation_is_running_on_compositor(animation,
    'rotate animation should be running on the compositor');

  div.style.setProperty('translate', '200px', 'important');
  getComputedStyle(div).translate;

  const anims = div.getAnimations();
  await waitForPaints();

  assert_animation_is_running_on_compositor(anims[0],
    `${anims[0].effect.getProperties()[0].property} animation should be ` +
    `running on the compositor`);
  assert_animation_is_running_on_compositor(anims[1],
    `${anims[1].effect.getProperties()[0].property} animation should be ` +
    `running on the compositor`);
}, 'Transform-like animations and transitions still runs on the compositor ' +
   'because the !important rule is overridden by a transition, and the ' +
   'transition property does not have animations');

promise_test(async t => {
  const container = addDiv(t, { style: 'transform-style: preserve-3d;' });
  const targetA = addDiv(t, { style: 'transform-style: preserve-3d' });
  const targetB = addDiv(t, { style: 'transform-style: preserve-3d' });
  const targetC = addDiv(t);
  container.appendChild(targetA);
  targetA.append(targetB);
  targetB.append(targetC);

  const animation1 = targetA.animate({ rotate: ['0 0 1 0deg', '1 1 1 45deg'] },
                                     100 * MS_PER_SEC);

  const animation2 = targetC.animate({ rotate: ['0 0 1 0deg', '0 1 1 100deg'] },
                                     100 * MS_PER_SEC);

  await waitForAnimationReadyToRestyle(animation1);
  await waitForAnimationReadyToRestyle(animation2);
  await waitForPaints();

  assert_animation_is_running_on_compositor(animation1,
    'rotate animation in the 3d rendering context should be running on the ' +
    'compositor');
  assert_animation_is_running_on_compositor(animation2,
    'rotate animation in the 3d rendering context should be running on the ' +
    'compositor');
}, 'Transform-like animations in the 3d rendering context should runs on the ' +
   'compositor');

promise_test(async t => {
  const container = addDiv(t, { style: 'transform-style: preserve-3d;' });
  const target = addDiv(t, { style: 'transform-style: preserve-3d;' });
  const innerA = addDiv(t, { style: 'width: 50px; height: 50px;' });
  // The frame of innerB is too large, so this makes its ancenstors and children
  // in the 3d context be not allowed the async animations.
  const innerB = addDiv(t, { style: 'rotate: 0 1 1 100deg; ' +
                                    'transform-style: preserve-3d; ' +
                                    'text-indent: -9999em' });
  const innerB2 = addDiv(t, { style: 'rotate: 0 1 1 45deg;' });
  const innerBText = document.createTextNode("innerB");
  container.appendChild(target);
  target.appendChild(innerA);
  target.appendChild(innerB);
  innerB.appendChild(innerBText);
  innerB.appendChild(innerB2);

  const animation1 = target.animate({ rotate: ['0 0 1 0deg', '1 1 1 45deg'] },
                                    100 * MS_PER_SEC);

  const animation2 = innerA.animate({ rotate: ['0 0 1 0deg', '0 1 1 100deg'] },
                                    100 * MS_PER_SEC);

  const animation3 = innerB2.animate({ rotate: ['0 0 1 0deg', '0 1 1 90deg'] },
                                     100 * MS_PER_SEC);

  await waitForAnimationReadyToRestyle(animation1);
  await waitForAnimationReadyToRestyle(animation2);
  await waitForAnimationReadyToRestyle(animation3);
  await waitForPaints();

  const isPartialPrerenderEnabled =
    SpecialPowers.getBoolPref('layout.animation.prerender.partial');

  if (isPartialPrerenderEnabled) {
    assert_animation_is_running_on_compositor(animation1,
      'rotate animation in the 3d rendering context should be running on ' +
      'the compositor even if one of its inner frames is too large');
    assert_animation_is_running_on_compositor(animation2,
      'rotate animation in the 3d rendering context is still running on ' +
      'the compositor because its display item is created earlier');
    assert_animation_is_running_on_compositor(animation3,
      'rotate animation in the 3d rendering context should be running on ' +
      'the compositor even if one of its parent frames is too large');
  } else {
    assert_animation_is_not_running_on_compositor(animation1,
      'rotate animation in the 3d rendering context should not be running on ' +
      'the compositor because one of its inner frames is too large');
    assert_animation_is_running_on_compositor(animation2,
      'rotate animation in the 3d rendering context is still running on ' +
      'the compositor because its display item is created earlier');
    assert_animation_is_not_running_on_compositor(animation3,
      'rotate animation in the 3d rendering context should not be running on ' +
      'the compositor because one of its parent frames is too large');
  }
  innerBText.remove();
}, 'Transform-like animations in the 3d rendering context should run on ' +
   'the compositor even if it is the ancestor of ones whose frames are too ' +
   'large or its ancestor is not allowed to run on the compositor');

promise_test(async t => {
  const container = addDiv(t, { style: 'transform-style: preserve-3d;' });
  const target = addDiv(t, { style: 'transform-style: preserve-3d;' });
  // The frame of innerA is too large, so this makes its ancenstors and children
  // in the 3d context be not allowed the async animations.
  const innerA = addDiv(t, { style: 'transform-style: preserve-3d; ' +
                                    'text-indent: -9999em' });
  const innerAText = document.createTextNode("innerA");
  const innerB = addDiv(t, { style: 'width: 50px; height: 50px;' });
  container.appendChild(target);
  target.appendChild(innerA);
  target.appendChild(innerB);
  innerA.appendChild(innerAText);

  const animation1 = target.animate({ rotate: ['0 0 1 0deg', '1 1 1 45deg'] },
                                    100 * MS_PER_SEC);

  const animation2 = innerA.animate({ rotate: ['0 0 1 0deg', '0 1 1 100deg'] },
                                    100 * MS_PER_SEC);

  const animation3 = innerB.animate({ rotate: ['0 0 1 0deg', '0 1 1 90deg'] },
                                    100 * MS_PER_SEC);

  await waitForAnimationReadyToRestyle(animation1);
  await waitForAnimationReadyToRestyle(animation2);
  await waitForAnimationReadyToRestyle(animation3);
  await waitForPaints();

  const isPartialPrerenderEnabled =
    SpecialPowers.getBoolPref('layout.animation.prerender.partial');

  if (isPartialPrerenderEnabled) {
    assert_animation_is_running_on_compositor(animation1,
      'rotate animation in the 3d rendering context should be running on ' +
      'the compositor even if one of its inner frames is too large');
    assert_animation_is_running_on_compositor(animation2,
      'rotate animation in the 3d rendering context should be running on ' +
      'the compositor even if its frame size is too large');
    assert_animation_is_running_on_compositor(animation3,
      'rotate animation in the 3d rendering context should be running on ' +
      'the compositor even if its previous sibling frame is too large');
  } else {
    assert_animation_is_not_running_on_compositor(animation1,
      'rotate animation in the 3d rendering context should not be running on ' +
      'the compositor because one of its inner frames is too large');
    assert_animation_is_not_running_on_compositor(animation2,
      'rotate animation in the 3d rendering context should not be running on ' +
      'the compositor because its frame size is too large');
    assert_animation_is_not_running_on_compositor(animation3,
      'rotate animation in the 3d rendering context should not be running on ' +
      'the compositor because its previous sibling frame is too large');
  }
  innerAText.remove();
}, 'Transform-like animations in the 3d rendering context should run on ' +
   'the compositor even if its previous sibling frame size is too large');

</script>
</body>