blob: 27fc1dd3841e8c35a71c5068be3231a2c1f83cd5 [file] [log] [blame]
Mason Freedb0855622018-10-02 17:49:471// To make sure animation events get processed, periodic lifecycle phase runs
2// will include rasterization. See
Eric Willigers6c58bdb2022-01-24 23:06:453// https://chromium.googlesource.com/chromium/src/+/main/docs/testing/writing_web_tests.md
Mason Freedb0855622018-10-02 17:49:474// for more information.
5function setAnimationRequiresRaster() {
6 if (window.testRunner) {
7 testRunner.setAnimationRequiresRaster(true);
8 }
9}
10
11function updateAllLifecyclePhasesAndCompositeAsyncThen(callback) {
12 setTimeout(function() {
13 if (!window.testRunner) {
14 callback();
15 } else {
16 testRunner.updateAllLifecyclePhasesAndCompositeThen(callback);
17 }
18 },0);
19}