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 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314
|
<!doctype html>
<head>
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<meta charset=utf-8>
<title>Tests restyles caused by animations</title>
<script>
const ok = opener.ok.bind(opener);
const is = opener.is.bind(opener);
const todo = opener.todo.bind(opener);
const todo_is = opener.todo_is.bind(opener);
const info = opener.info.bind(opener);
const original_finish = opener.SimpleTest.finish;
const SimpleTest = opener.SimpleTest;
const add_task = opener.add_task;
SimpleTest.finish = function finish() {
self.close();
original_finish();
}
</script>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<script src="/tests/SimpleTest/paint_listener.js"></script>
<script src="../testcommon.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css">
<style>
@keyframes background-position {
0% {
background-position: -25px center;
}
40%,
100% {
background-position: 36px center;
}
}
@keyframes opacity {
from { opacity: 1; }
to { opacity: 0; }
}
@keyframes opacity-from-zero {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes opacity-without-end-value {
from { opacity: 0; }
}
@keyframes on-main-thread {
from { z-index: 0; }
to { z-index: 999; }
}
@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
@keyframes move-in {
from { transform: translate(120%, 120%); }
to { transform: translate(0%, 0%); }
}
@keyframes background-color {
from { background-color: rgb(255, 0, 0,); }
to { background-color: rgb(0, 255, 0,); }
}
div {
/* Element needs geometry to be eligible for layerization */
width: 100px;
height: 100px;
background-color: white;
}
progress:not(.stop)::-moz-progress-bar {
animation: on-main-thread 100s;
}
body {
/*
* set overflow:hidden to avoid accidentally unthrottling animations to update
* the overflow region.
*/
overflow: hidden;
}
</style>
</head>
<body>
<script>
'use strict';
// Returns observed animation restyle markers when |funcToMakeRestyleHappen|
// is called.
// NOTE: This function is synchronous version of the above observeStyling().
// Unlike the above observeStyling, this function takes a callback function,
// |funcToMakeRestyleHappen|, which may be expected to trigger a synchronous
// restyles, and returns any restyle markers produced by calling that function.
function observeAnimSyncStyling(funcToMakeRestyleHappen) {
let priorAnimationTriggeredRestyles = SpecialPowers.DOMWindowUtils.animationTriggeredRestyles;
funcToMakeRestyleHappen();
const restyleCount = SpecialPowers.DOMWindowUtils.animationTriggeredRestyles - priorAnimationTriggeredRestyles;
return restyleCount;
}
function ensureElementRemoval(aElement) {
return new Promise(resolve => {
aElement.remove();
waitForAllPaintsFlushed(resolve);
});
}
function waitForWheelEvent(aTarget) {
return new Promise(resolve => {
// Get the scrollable target element position in this window coordinate
// system to send a wheel event to the element.
const targetRect = aTarget.getBoundingClientRect();
const centerX = targetRect.left + targetRect.width / 2;
const centerY = targetRect.top + targetRect.height / 2;
sendWheelAndPaintNoFlush(aTarget, centerX, centerY,
{ deltaMode: WheelEvent.DOM_DELTA_PIXEL,
deltaY: targetRect.height },
resolve);
});
}
const omtaEnabled = isOMTAEnabled();
function add_task_if_omta_enabled(test) {
if (!omtaEnabled) {
info(test.name + " is skipped because OMTA is disabled");
return;
}
add_task(test);
}
async function estimateVsyncRate() {
await waitForNextFrame();
const timeAtStart = document.timeline.currentTime;
await waitForAnimationFrames(5);
return (document.timeline.currentTime - timeAtStart) / 5;
}
// We need to wait for all paints before running tests to avoid contaminations
// from styling of this document itself.
waitForAllPaints(async () => {
const vsyncRate = await estimateVsyncRate();
// In this test we basically observe restyling counts in 5 frames, if it
// takes over 200ms during the 5 frames, this test will fail. So
// "200ms / 5 = 40ms" is a threshold whether the test works as expected or
// not. We'd take 5ms additional tolerance here.
// Note that the 200ms is a period we unthrottle throttled animations that
// at least one of the animating styles produces change hints causing
// overflow, the value is defined in
// KeyframeEffect::OverflowRegionRefreshInterval.
if (vsyncRate > 40 - 5) {
ok(true, `the vsync rate ${vsyncRate} on this machine is too slow to run this test`);
SimpleTest.finish();
return;
}
add_task(async function restyling_for_main_thread_animations() {
const div = addDiv(null, { style: 'animation: on-main-thread 100s' });
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = await observeStyling(5);
is(restyleCount, 5,
'CSS animations running on the main-thread should update style ' +
'on the main thread');
await ensureElementRemoval(div);
});
add_task(async function restyling_for_main_thread_animations_progress_bar_pseudo() {
const progress = document.createElement("progress");
document.body.appendChild(progress);
await waitForNextFrame();
await waitForNextFrame();
let restyleCount;
restyleCount = await observeStyling(5);
// TODO(bug 1784931): Figure out why we only see four markers sometimes.
// That's not the point of this test tho.
let maybe_todo_is = restyleCount == 4 ? todo_is : is;
maybe_todo_is(restyleCount, 5,
'CSS animations running on the main-thread should update style ' +
'on the main thread on ::-moz-progress-bar');
progress.classList.add("stop");
await waitForNextFrame();
await waitForNextFrame();
restyleCount = await observeStyling(5);
is(restyleCount, 0, 'Animation is correctly removed');
await ensureElementRemoval(progress);
});
add_task_if_omta_enabled(async function no_restyling_for_compositor_animations() {
const div = addDiv(null, { style: 'animation: opacity 100s' });
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
ok(SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'CSS animations running on the compositor should not update style ' +
'on the main thread');
await ensureElementRemoval(div);
});
add_task_if_omta_enabled(async function no_restyling_for_compositor_transitions() {
const div = addDiv(null, { style: 'transition: opacity 100s; opacity: 0' });
getComputedStyle(div).opacity;
div.style.opacity = 1;
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
ok(SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'CSS transitions running on the compositor should not update style ' +
'on the main thread');
await ensureElementRemoval(div);
});
add_task_if_omta_enabled(async function no_restyling_when_animation_duration_is_changed() {
const div = addDiv(null, { style: 'animation: opacity 100s' });
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
ok(SpecialPowers.wrap(animation).isRunningOnCompositor);
div.animationDuration = '200s';
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations running on the compositor should not update style ' +
'on the main thread');
await ensureElementRemoval(div);
});
add_task_if_omta_enabled(async function only_one_restyling_after_finish_is_called() {
const div = addDiv(null, { style: 'animation: opacity 100s' });
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
ok(SpecialPowers.wrap(animation).isRunningOnCompositor);
animation.finish();
let restyleCount;
restyleCount = await observeStyling(1);
is(restyleCount, 1,
'Animations running on the compositor should only update style once ' +
'after finish() is called');
restyleCount = await observeStyling(1);
todo_is(restyleCount, 0,
'Bug 1415457: Animations running on the compositor should only ' +
'update style once after finish() is called');
restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Finished animations should never update style after one ' +
'restyle happened for finish()');
await ensureElementRemoval(div);
});
add_task(async function no_restyling_mouse_movement_on_finished_transition() {
const div = addDiv(null, { style: 'transition: opacity 1ms; opacity: 0' });
getComputedStyle(div).opacity;
div.style.opacity = 1;
const animation = div.getAnimations()[0];
const initialRect = div.getBoundingClientRect();
await animation.finished;
let restyleCount;
restyleCount = await observeStyling(1);
is(restyleCount, 1,
'Finished transitions should restyle once after Animation.finished ' +
'was fulfilled');
let mouseX = initialRect.left + initialRect.width / 2;
let mouseY = initialRect.top + initialRect.height / 2;
restyleCount = await observeStyling(5, () => {
// We can't use synthesizeMouse here since synthesizeMouse causes
// layout flush.
synthesizeMouseAtPoint(mouseX++, mouseY++,
{ type: 'mousemove' }, window);
});
is(restyleCount, 0,
'Finished transitions should never cause restyles when mouse is moved ' +
'on the transitions');
await ensureElementRemoval(div);
});
add_task(async function no_restyling_mouse_movement_on_finished_animation() {
const div = addDiv(null, { style: 'animation: opacity 1ms' });
const animation = div.getAnimations()[0];
const initialRect = div.getBoundingClientRect();
await animation.finished;
let restyleCount;
restyleCount = await observeStyling(1);
is(restyleCount, 1,
'Finished animations should restyle once after Animation.finished ' +
'was fulfilled');
let mouseX = initialRect.left + initialRect.width / 2;
let mouseY = initialRect.top + initialRect.height / 2;
restyleCount = await observeStyling(5, () => {
// We can't use synthesizeMouse here since synthesizeMouse causes
// layout flush.
synthesizeMouseAtPoint(mouseX++, mouseY++,
{ type: 'mousemove' }, window);
});
is(restyleCount, 0,
'Finished animations should never cause restyles when mouse is moved ' +
'on the animations');
await ensureElementRemoval(div);
});
add_task_if_omta_enabled(async function no_restyling_compositor_animations_out_of_view_element() {
const div = addDiv(null,
{ style: 'animation: opacity 100s; transform: translateY(-400px);' });
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations running on the compositor in an out-of-view element ' +
'should never cause restyles');
await ensureElementRemoval(div);
});
add_task(async function no_restyling_main_thread_animations_out_of_view_element() {
const div = addDiv(null,
{ style: 'animation: on-main-thread 100s; transform: translateY(-400px);' });
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations running on the main-thread in an out-of-view element ' +
'should never cause restyles');
await ensureElementRemoval(div);
});
add_task_if_omta_enabled(async function no_restyling_compositor_animations_in_scrolled_out_element() {
const parentElement = addDiv(null,
{ style: 'overflow-y: scroll; height: 20px;' });
const div = addDiv(null,
{ style: 'animation: opacity 100s; position: relative; top: 100px;' });
parentElement.appendChild(div);
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations running on the compositor for elements ' +
'which are scrolled out should never cause restyles');
await ensureElementRemoval(parentElement);
});
add_task(
async function no_restyling_missing_keyframe_opacity_animations_on_scrolled_out_element() {
const parentElement = addDiv(null,
{ style: 'overflow-y: scroll; height: 20px;' });
const div = addDiv(null,
{ style: 'animation: opacity-without-end-value 100s; ' +
'position: relative; top: 100px;' });
parentElement.appendChild(div);
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Opacity animations on scrolled out elements should never cause ' +
'restyles even if the animation has missing keyframes');
await ensureElementRemoval(parentElement);
}
);
add_task(
async function restyling_transform_animations_in_scrolled_out_element() {
// Make sure we start from the state right after requestAnimationFrame.
await waitForFrame();
const parentElement = addDiv(null,
{ style: 'overflow-y: scroll; height: 20px;' });
const div = addDiv(null,
{ style: 'animation: rotate 100s infinite; position: relative; top: 100px;' });
parentElement.appendChild(div);
const animation = div.getAnimations()[0];
let timeAtStart = document.timeline.currentTime;
ok(!animation.isRunningOnCompositor,
'The transform animation is not running on the compositor');
let restyleCount
let now;
let elapsed;
while (true) {
now = document.timeline.currentTime;
elapsed = (now - timeAtStart);
restyleCount = await observeStyling(1);
if (restyleCount) {
break;
}
}
// If the current time has elapsed over 200ms since the animation was
// created, it means that the animation should have already
// unthrottled in this tick, let's see what we observe in this tick's
// restyling process.
// We use toPrecision here and below so 199.99999999999977 will turn into 200.
ok(elapsed.toPrecision(10) >= 200,
'Transform animation running on the element which is scrolled out ' +
'should be throttled until 200ms is elapsed. now: ' +
now + ' start time: ' + timeAtStart + ' elapsed:' + elapsed);
timeAtStart = document.timeline.currentTime;
restyleCount = await observeStyling(1);
now = document.timeline.currentTime;
elapsed = (now - timeAtStart);
let expectedMarkersLengthValid;
// On the fence of 200 ms, we probably have 1 marker; but if we hit a bad rounding
// we might still have 0. But if it's > 200, we should have 1; and less we should have 0.
if (elapsed.toPrecision(10) == 200)
expectedMarkersLengthValid = restyleCount < 2;
else if (elapsed.toPrecision(10) > 200)
expectedMarkersLengthValid = restyleCount == 1;
else
expectedMarkersLengthValid = !restyleCount;
ok(expectedMarkersLengthValid,
'Transform animation running on the element which is scrolled out ' +
'should be unthrottled after around 200ms have elapsed. now: ' +
now + ' start time: ' + timeAtStart + ' elapsed: ' + elapsed);
await ensureElementRemoval(parentElement);
}
);
add_task(
async function restyling_out_of_view_transform_animations_in_another_element() {
// Make sure we start from the state right after requestAnimationFrame.
await waitForFrame();
const parentElement = addDiv(null,
{ style: 'overflow: hidden;' });
const div = addDiv(null,
{ style: 'animation: move-in 100s infinite;' });
parentElement.appendChild(div);
const animation = div.getAnimations()[0];
let timeAtStart = document.timeline.currentTime;
ok(!animation.isRunningOnCompositor,
'The transform animation on out of view element ' +
'is not running on the compositor');
// Structure copied from restyling_transform_animations_in_scrolled_out_element
let restyleCount
let now;
let elapsed;
while (true) {
now = document.timeline.currentTime;
elapsed = (now - timeAtStart);
restyleCount = await observeStyling(1);
if (restyleCount) {
break;
}
}
ok(elapsed.toPrecision(10) >= 200,
'Transform animation running on out of view element ' +
'should be throttled until 200ms is elapsed. now: ' +
now + ' start time: ' + timeAtStart + ' elapsed:' + elapsed);
timeAtStart = document.timeline.currentTime;
restyleCount = await observeStyling(1);
now = document.timeline.currentTime;
elapsed = (now - timeAtStart);
let expectedMarkersLengthValid;
// On the fence of 200 ms, we probably have 1 marker; but if we hit a bad rounding
// we might still have 0. But if it's > 200, we should have 1; and less we should have 0.
if (elapsed.toPrecision(10) == 200)
expectedMarkersLengthValid = restyleCount < 2;
else if (elapsed.toPrecision(10) > 200)
expectedMarkersLengthValid = restyleCount == 1;
else
expectedMarkersLengthValid = !restyleCount;
ok(expectedMarkersLengthValid,
'Transform animation running on out of view element ' +
'should be unthrottled after around 200ms have elapsed. now: ' +
now + ' start time: ' + timeAtStart + ' elapsed: ' + elapsed);
await ensureElementRemoval(parentElement);
}
);
add_task(async function finite_transform_animations_in_out_of_view_element() {
const parentElement = addDiv(null, { style: 'overflow: hidden;' });
const div = addDiv(null);
const animation =
div.animate({ transform: [ 'translateX(120%)', 'translateX(100%)' ] },
// This animation will move a bit but
// will remain out-of-view.
100 * MS_PER_SEC);
parentElement.appendChild(div);
await waitForAnimationReadyToRestyle(animation);
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor, "Should not be running in compositor");
const restyleCount = await observeStyling(20);
is(restyleCount, 20,
'Finite transform animation in out-of-view element should never be ' +
'throttled');
await ensureElementRemoval(parentElement);
});
add_task(async function restyling_main_thread_animations_in_scrolled_out_element() {
const parentElement = addDiv(null,
{ style: 'overflow-y: scroll; height: 20px;' });
const div = addDiv(null,
{ style: 'animation: on-main-thread 100s; position: relative; top: 20px;' });
parentElement.appendChild(div);
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
let restyleCount;
restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations running on the main-thread for elements ' +
'which are scrolled out should never cause restyles');
await waitForWheelEvent(parentElement);
// Make sure we are ready to restyle before counting restyles.
await waitForFrame();
restyleCount = await observeStyling(5);
is(restyleCount, 5,
'Animations running on the main-thread which were in scrolled out ' +
'elements should update restyling soon after the element moved in ' +
'view by scrolling');
await ensureElementRemoval(parentElement);
});
add_task(async function restyling_main_thread_animations_in_nested_scrolled_out_element() {
const grandParent = addDiv(null,
{ style: 'overflow-y: scroll; height: 20px;' });
const parentElement = addDiv(null,
{ style: 'overflow-y: scroll; height: 100px;' });
const div = addDiv(null,
{ style: 'animation: on-main-thread 100s; ' +
'position: relative; ' +
'top: 20px;' }); // This element is in-view in the parent, but
// out of view in the grandparent.
grandParent.appendChild(parentElement);
parentElement.appendChild(div);
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
let restyleCount;
restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations running on the main-thread which are in nested elements ' +
'which are scrolled out should never cause restyles');
await waitForWheelEvent(grandParent);
await waitForFrame();
restyleCount = await observeStyling(5);
is(restyleCount, 5,
'Animations running on the main-thread which were in nested scrolled ' +
'out elements should update restyle soon after the element moved ' +
'in view by scrolling');
await ensureElementRemoval(grandParent);
});
add_task_if_omta_enabled(async function no_restyling_compositor_animations_in_visibility_hidden_element() {
const div = addDiv(null,
{ style: 'animation: opacity 100s; visibility: hidden' });
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations running on the compositor in visibility hidden element ' +
'should never cause restyles');
await ensureElementRemoval(div);
});
add_task(async function restyling_main_thread_animations_move_out_of_view_by_scrolling() {
const parentElement = addDiv(null,
{ style: 'overflow-y: scroll; height: 200px;' });
const div = addDiv(null,
{ style: 'animation: on-main-thread 100s;' });
const pad = addDiv(null,
{ style: 'height: 400px;' });
parentElement.appendChild(div);
parentElement.appendChild(pad);
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
await waitForWheelEvent(parentElement);
await waitForFrame();
const restyleCount = await observeStyling(5);
// FIXME: We should reduce a redundant restyle here.
ok(restyleCount >= 0,
'Animations running on the main-thread which are in scrolled out ' +
'elements should throttle restyling');
await ensureElementRemoval(parentElement);
});
add_task(async function restyling_main_thread_animations_moved_in_view_by_resizing() {
const parentElement = addDiv(null,
{ style: 'overflow-y: scroll; height: 20px;' });
const div = addDiv(null,
{ style: 'animation: on-main-thread 100s; position: relative; top: 100px;' });
parentElement.appendChild(div);
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
let restyleCount;
restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations running on the main-thread which is in scrolled out ' +
'elements should not update restyling');
parentElement.style.height = '100px';
restyleCount = await observeStyling(1);
is(restyleCount, 1,
'Animations running on the main-thread which was in scrolled out ' +
'elements should update restyling soon after the element moved in ' +
'view by resizing');
await ensureElementRemoval(parentElement);
});
add_task(
async function restyling_animations_on_visibility_changed_element_having_child() {
const div = addDiv(null,
{ style: 'animation: on-main-thread 100s;' });
const childElement = addDiv(null);
div.appendChild(childElement);
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
// We don't check the animation causes restyles here since we already
// check it in the first test case.
div.style.visibility = 'hidden';
await waitForNextFrame();
const restyleCount = await observeStyling(5);
todo_is(restyleCount, 0,
'Animations running on visibility hidden element which ' +
'has a child whose visiblity is inherited from the element and ' +
'the element was initially visible');
await ensureElementRemoval(div);
}
);
add_task(
async function restyling_animations_on_visibility_hidden_element_which_gets_visible() {
const div = addDiv(null,
{ style: 'animation: on-main-thread 100s; visibility: hidden' });
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
let restyleCount;
restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations running on visibility hidden element should never ' +
'cause restyles');
div.style.visibility = 'visible';
await waitForNextFrame();
restyleCount = await observeStyling(5);
is(restyleCount, 5,
'Animations running that was on visibility hidden element which ' +
'gets visible should not throttle restyling any more');
await ensureElementRemoval(div);
}
);
add_task(async function restyling_animations_in_visibility_changed_parent() {
const parentDiv = addDiv(null, { style: 'visibility: hidden' });
const div = addDiv(null, { style: 'animation: on-main-thread 100s;' });
parentDiv.appendChild(div);
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
let restyleCount;
restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations running in visibility hidden parent should never cause ' +
'restyles');
parentDiv.style.visibility = 'visible';
await waitForNextFrame();
restyleCount = await observeStyling(5);
is(restyleCount, 5,
'Animations that was in visibility hidden parent should not ' +
'throttle restyling any more');
parentDiv.style.visibility = 'hidden';
await waitForNextFrame();
restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations that the parent element became visible should throttle ' +
'restyling again');
await ensureElementRemoval(parentDiv);
});
add_task(
async function restyling_animations_on_visibility_hidden_element_with_visibility_changed_children() {
const div = addDiv(null,
{ style: 'animation: on-main-thread 100s; visibility: hidden' });
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
let restyleCount;
restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations on visibility hidden element having no visible children ' +
'should never cause restyles');
const childElement = addDiv(null, { style: 'visibility: visible' });
div.appendChild(childElement);
await waitForNextFrame();
restyleCount = await observeStyling(5);
is(restyleCount, 5,
'Animations running on visibility hidden element but the element has ' +
'a visible child should not throttle restyling');
childElement.style.visibility = 'hidden';
await waitForNextFrame();
restyleCount = await observeStyling(5);
todo_is(restyleCount, 0,
'Animations running on visibility hidden element that a child ' +
'has become invisible should throttle restyling');
childElement.style.visibility = 'visible';
await waitForNextFrame();
restyleCount = await observeStyling(5);
is(restyleCount, 5,
'Animations running on visibility hidden element should not throttle ' +
'restyling after the invisible element changed to visible');
childElement.remove();
await waitForNextFrame();
restyleCount = await observeStyling(5);
todo_is(restyleCount, 0,
'Animations running on visibility hidden element should throttle ' +
'restyling again after all visible descendants were removed');
await ensureElementRemoval(div);
}
);
add_task(
async function restyling_animations_on_visiblity_hidden_element_having_oof_child() {
const div = addDiv(null,
{ style: 'animation: on-main-thread 100s; position: absolute' });
const childElement = addDiv(null,
{ style: 'float: left; visibility: hidden' });
div.appendChild(childElement);
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
// We don't check the animation causes restyles here since we already
// check it in the first test case.
div.style.visibility = 'hidden';
await waitForNextFrame();
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations running on visibility hidden element which has an ' +
'out-of-flow child should throttle restyling');
await ensureElementRemoval(div);
}
);
add_task(
async function restyling_animations_on_visibility_hidden_element_having_grandchild() {
// element tree:
//
// root(visibility:hidden)
// / \
// childA childB
// / \ / \
// AA AB BA BB
const div = addDiv(null,
{ style: 'animation: on-main-thread 100s; visibility: hidden' });
const childA = addDiv(null);
div.appendChild(childA);
const childB = addDiv(null);
div.appendChild(childB);
const grandchildAA = addDiv(null);
childA.appendChild(grandchildAA);
const grandchildAB = addDiv(null);
childA.appendChild(grandchildAB);
const grandchildBA = addDiv(null);
childB.appendChild(grandchildBA);
const grandchildBB = addDiv(null);
childB.appendChild(grandchildBB);
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
let restyleCount;
restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations on visibility hidden element having no visible ' +
'descendants should never cause restyles');
childA.style.visibility = 'visible';
grandchildAA.style.visibility = 'visible';
grandchildAB.style.visibility = 'visible';
await waitForNextFrame();
restyleCount = await observeStyling(5);
is(restyleCount, 5,
'Animations running on visibility hidden element but the element has ' +
'visible children should not throttle restyling');
// Make childA hidden again but both of grandchildAA and grandchildAB are
// still visible.
childA.style.visibility = 'hidden';
await waitForNextFrame();
restyleCount = await observeStyling(5);
is(restyleCount, 5,
'Animations running on visibility hidden element that a child has ' +
'become invisible again but there are still visible children should ' +
'not throttle restyling');
// Make grandchildAA hidden but grandchildAB is still visible.
grandchildAA.style.visibility = 'hidden';
await waitForNextFrame();
restyleCount = await observeStyling(5);
is(restyleCount, 5,
'Animations running on visibility hidden element that a grandchild ' +
'become invisible again but another grandchild is still visible ' +
'should not throttle restyling');
// Make childB and grandchildBA visible.
childB.style.visibility = 'visible';
grandchildBA.style.visibility = 'visible';
await waitForNextFrame();
restyleCount = await observeStyling(5);
is(restyleCount, 5,
'Animations running on visibility hidden element but the element has ' +
'visible descendants should not throttle restyling');
// Make childB hidden but grandchildAB and grandchildBA are still visible.
childB.style.visibility = 'hidden';
await waitForNextFrame();
restyleCount = await observeStyling(5);
is(restyleCount, 5,
'Animations running on visibility hidden element but the element has ' +
'visible grandchildren should not throttle restyling');
// Make grandchildAB hidden but grandchildBA is still visible.
grandchildAB.style.visibility = 'hidden';
await waitForNextFrame();
restyleCount = await observeStyling(5);
is(restyleCount, 5,
'Animations running on visibility hidden element but the element has ' +
'a visible grandchild should not throttle restyling');
// Make grandchildBA hidden. Now all descedants are invisible.
grandchildBA.style.visibility = 'hidden';
await waitForNextFrame();
restyleCount = await observeStyling(5);
todo_is(restyleCount, 0,
'Animations on visibility hidden element that all descendants have ' +
'become invisible again should never cause restyles');
// Make childB visible.
childB.style.visibility = 'visible';
await waitForNextFrame();
restyleCount = await observeStyling(5);
is(restyleCount, 5,
'Animations on visibility hidden element that has a visible child ' +
'should never cause restyles');
// Make childB invisible again
childB.style.visibility = 'hidden';
await waitForNextFrame();
restyleCount = await observeStyling(5);
todo_is(restyleCount, 0,
'Animations on visibility hidden element that the visible child ' +
'has become invisible again should never cause restyles');
await ensureElementRemoval(div);
}
);
add_task_if_omta_enabled(async function no_restyling_compositor_animations_after_pause_is_called() {
const div = addDiv(null, { style: 'animation: opacity 100s' });
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
ok(SpecialPowers.wrap(animation).isRunningOnCompositor);
animation.pause();
await animation.ready;
let restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Paused animations running on the compositor should never cause ' +
'restyles');
await ensureElementRemoval(div);
});
add_task(async function no_restyling_main_thread_animations_after_pause_is_called() {
const div = addDiv(null, { style: 'animation: on-main-thread 100s' });
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
animation.pause();
await animation.ready;
let restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Paused animations running on the main-thread should never cause ' +
'restyles');
await ensureElementRemoval(div);
});
add_task_if_omta_enabled(async function only_one_restyling_when_current_time_is_set_to_middle_of_duration() {
const div = addDiv(null, { style: 'animation: opacity 100s' });
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
animation.currentTime = 50 * MS_PER_SEC;
const restyleCount = await observeStyling(5);
is(restyleCount, 1,
'Bug 1235478: Animations running on the compositor should only once ' +
'update style when currentTime is set to middle of duration time');
await ensureElementRemoval(div);
});
add_task_if_omta_enabled(async function change_duration_and_currenttime() {
const div = addDiv(null);
const animation = div.animate({ opacity: [ 0, 1 ] }, 100 * MS_PER_SEC);
await waitForAnimationReadyToRestyle(animation);
ok(SpecialPowers.wrap(animation).isRunningOnCompositor);
// Set currentTime to a time longer than duration.
animation.currentTime = 500 * MS_PER_SEC;
// Now the animation immediately get back from compositor.
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor);
// Extend the duration.
animation.effect.updateTiming({ duration: 800 * MS_PER_SEC });
const restyleCount = await observeStyling(5);
is(restyleCount, 1,
'Animations running on the compositor should update style ' +
'when duration is made longer than the current time');
await ensureElementRemoval(div);
});
add_task(async function script_animation_on_display_none_element() {
const div = addDiv(null);
const animation = div.animate({ zIndex: [ '0', '999' ] },
100 * MS_PER_SEC);
await waitForAnimationReadyToRestyle(animation);
div.style.display = 'none';
// We need to wait a frame to apply display:none style.
await waitForNextFrame();
is(animation.playState, 'running',
'Script animations keep running even when the target element has ' +
'"display: none" style');
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor,
'Script animations on "display:none" element should not run on the ' +
'compositor');
let restyleCount;
restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Script animations on "display: none" element should not update styles');
div.style.display = '';
restyleCount = await observeStyling(5);
is(restyleCount, 5,
'Script animations restored from "display: none" state should update ' +
'styles');
await ensureElementRemoval(div);
});
add_task_if_omta_enabled(async function compositable_script_animation_on_display_none_element() {
const div = addDiv(null);
const animation = div.animate({ opacity: [ 0, 1 ] }, 100 * MS_PER_SEC);
await waitForAnimationReadyToRestyle(animation);
div.style.display = 'none';
// We need to wait a frame to apply display:none style.
await waitForNextFrame();
is(animation.playState, 'running',
'Opacity script animations keep running even when the target element ' +
'has "display: none" style');
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor,
'Opacity script animations on "display:none" element should not ' +
'run on the compositor');
let restyleCount;
restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Opacity script animations on "display: none" element should not ' +
'update styles');
div.style.display = '';
restyleCount = await observeStyling(1);
is(restyleCount, 1,
'Script animations restored from "display: none" state should update ' +
'styles soon');
ok(SpecialPowers.wrap(animation).isRunningOnCompositor,
'Opacity script animations restored from "display: none" should be ' +
'run on the compositor in the next frame');
await ensureElementRemoval(div);
});
add_task(async function restyling_for_empty_keyframes() {
const div = addDiv(null);
const animation = div.animate({ }, 100 * MS_PER_SEC);
await waitForAnimationReadyToRestyle(animation);
let restyleCount;
restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations with no keyframes should not cause restyles');
animation.effect.setKeyframes({ zIndex: ['0', '999'] });
restyleCount = await observeStyling(5);
is(restyleCount, 5,
'Setting valid keyframes should cause regular animation restyles to ' +
'occur');
animation.effect.setKeyframes({ });
restyleCount = await observeStyling(5);
is(restyleCount, 1,
'Setting an empty set of keyframes should trigger a single restyle ' +
'to remove the previous animated style');
await ensureElementRemoval(div);
});
add_task_if_omta_enabled(async function no_restyling_when_animation_style_when_re_setting_same_animation_property() {
const div = addDiv(null, { style: 'animation: opacity 100s' });
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
ok(SpecialPowers.wrap(animation).isRunningOnCompositor);
// Apply the same animation style
div.style.animation = 'opacity 100s';
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Applying same animation style ' +
'should never cause restyles');
await ensureElementRemoval(div);
});
add_task(async function necessary_update_should_be_invoked() {
const div = addDiv(null, { style: 'animation: on-main-thread 100s' });
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
await waitForAnimationFrames(5);
// Apply another animation style
div.style.animation = 'on-main-thread 110s';
const restyleCount = await observeStyling(1);
// There should be two restyles.
// 1) Animation-only restyle for before applying the new animation style
// 2) Animation-only restyle for after applying the new animation style
is(restyleCount, 2,
'Applying animation style with different duration ' +
'should restyle twice');
await ensureElementRemoval(div);
});
add_task_if_omta_enabled(
async function changing_cascading_result_for_main_thread_animation() {
const div = addDiv(null, { style: 'on-main-thread: blue' });
const animation = div.animate({ opacity: [0, 1],
zIndex: ['0', '999'] },
100 * MS_PER_SEC);
await waitForAnimationReadyToRestyle(animation);
ok(SpecialPowers.wrap(animation).isRunningOnCompositor,
'The opacity animation is running on the compositor');
// Make the z-index style as !important to cause an update
// to the cascade.
// Bug 1300982: The z-index animation should be no longer
// running on the main thread.
div.style.setProperty('z-index', '0', 'important');
const restyleCount = await observeStyling(5);
todo_is(restyleCount, 0,
'Changing cascading result for the property running on the main ' +
'thread does not cause synchronization layer of opacity animation ' +
'running on the compositor');
await ensureElementRemoval(div);
}
);
add_task_if_omta_enabled(
async function animation_visibility_and_opacity() {
const div = addDiv(null);
const animation1 = div.animate({ opacity: [0, 1] }, 100 * MS_PER_SEC);
const animation2 = div.animate({ visibility: ['hidden', 'visible'] }, 100 * MS_PER_SEC);
await waitForAnimationReadyToRestyle(animation1);
await waitForAnimationReadyToRestyle(animation2);
const restyleCount = await observeStyling(5);
is(restyleCount, 5, 'The animation should not be throttled');
await ensureElementRemoval(div);
}
);
add_task(async function restyling_for_animation_on_orphaned_element() {
const div = addDiv(null);
const animation = div.animate({ marginLeft: [ '0px', '100px' ] },
100 * MS_PER_SEC);
await waitForAnimationReadyToRestyle(animation);
div.remove();
let restyleCount;
restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animation on orphaned element should not cause restyles');
document.body.appendChild(div);
await waitForNextFrame();
restyleCount = await observeStyling(5);
is(restyleCount, 5,
'Animation on re-attached to the document begins to update style, got ' + restyleCount);
await ensureElementRemoval(div);
});
add_task_if_omta_enabled(
// Tests that if we remove an element from the document whose animation
// cascade needs recalculating, that it is correctly updated when it is
// re-attached to the document.
async function restyling_for_opacity_animation_on_re_attached_element() {
const div = addDiv(null, { style: 'opacity: 1 ! important' });
const animation = div.animate({ opacity: [0, 1] }, 100 * MS_PER_SEC);
await waitForAnimationReadyToRestyle(animation);
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor,
'The opacity animation overridden by an !important rule is NOT ' +
'running on the compositor');
// Drop the !important rule to update the cascade.
div.style.setProperty('opacity', '1', '');
div.remove();
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Opacity animation on orphaned element should not cause restyles');
document.body.appendChild(div);
// Need a frame to give the animation a chance to be sent to the
// compositor.
await waitForNextFrame();
ok(SpecialPowers.wrap(animation).isRunningOnCompositor,
'The opacity animation which is no longer overridden by the ' +
'!important rule begins running on the compositor even if the ' +
'!important rule had been dropped before the target element was ' +
'removed');
await ensureElementRemoval(div);
}
);
add_task(
async function no_throttling_additive_animations_out_of_view_element() {
const div = addDiv(null, { style: 'transform: translateY(-400px);' });
const animation =
div.animate([{ visibility: 'visible' }],
{ duration: 100 * MS_PER_SEC, composite: 'add' });
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Additive animation has no keyframe whose offset is 0 or 1 in an ' +
'out-of-view element should be throttled');
await ensureElementRemoval(div);
}
);
// Tests that missing keyframes animations don't throttle at all.
add_task(async function no_throttling_animations_out_of_view_element() {
const div = addDiv(null, { style: 'transform: translateY(-400px);' });
const animation =
div.animate([{ visibility: 'visible' }], 100 * MS_PER_SEC);
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Discrete animation has has no keyframe whose offset is 0 or 1 in an ' +
'out-of-view element should be throttled');
await ensureElementRemoval(div);
});
// Tests that missing keyframes animation on scrolled out element that the
// animation is not able to be throttled.
add_task(
async function no_throttling_missing_keyframe_animations_out_of_view_element() {
const div =
addDiv(null, { style: 'transform: translateY(-400px);' +
'visibility: collapse;' });
const animation =
div.animate([{ visibility: 'visible' }], 100 * MS_PER_SEC);
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'visibility animation has no keyframe whose offset is 0 or 1 in an ' +
'out-of-view element should be throttled');
await ensureElementRemoval(div);
}
);
// Counter part of the above test.
add_task(async function no_restyling_discrete_animations_out_of_view_element() {
const div = addDiv(null, { style: 'transform: translateY(-400px);' });
const animation =
div.animate({ visibility: ['visible', 'hidden'] }, 100 * MS_PER_SEC);
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Discrete animation running on the main-thread in an out-of-view ' +
'element should never cause restyles');
await ensureElementRemoval(div);
});
add_task(async function no_restyling_while_computed_timing_is_not_changed() {
const div = addDiv(null);
const animation = div.animate({ zIndex: [ '0', '999' ] },
{ duration: 100 * MS_PER_SEC,
easing: 'step-end' });
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
// We possibly expect one restyle from the initial animation compose, in
// order to update animations, but nothing else.
ok(restyleCount <= 1,
'Animation running on the main-thread while computed timing is not ' +
'changed should not cause extra restyles, got ' + restyleCount);
await ensureElementRemoval(div);
});
add_task(async function no_throttling_animations_in_view_svg() {
const div = addDiv(null, { style: 'overflow: scroll;' +
'height: 100px; width: 100px;' });
const svg = addSVGElement(div, 'svg', { viewBox: '-10 -10 0.1 0.1',
width: '50px',
height: '50px' });
const rect = addSVGElement(svg, 'rect', { x: '-10',
y: '-10',
width: '10',
height: '10',
fill: 'red' });
const animation = rect.animate({ fill: ['blue', 'lime'] }, 100 * MS_PER_SEC);
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 5,
'CSS animations on an in-view svg element with post-transform should ' +
'not be throttled.');
await ensureElementRemoval(div);
});
add_task_if_omta_enabled(async function svg_non_scaling_stroke_animation() {
const div = addDiv(null, { style: 'overflow: scroll;' +
'height: 100px; width: 100px;' });
const svg = addSVGElement(div, 'svg', { viewBox: '0 0 250 250',
width: '40px',
height: '40px' });
const rect = addSVGElement(svg, 'rect', { x: '0',
y: '0',
width: '250',
height: '250',
fill: 'red',
style: 'vector-effect: non-scaling-stroke; animation: rotate 100s infinite;'});
const animation = rect.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor,
'The animation of a non-scaling-stroke element is not running on the compositor');
await ensureElementRemoval(div);
});
add_task(async function no_throttling_animations_in_transformed_parent() {
const div = addDiv(null, { style: 'overflow: scroll;' +
'transform: translateX(50px);' });
const svg = addSVGElement(div, 'svg', { viewBox: '0 0 1250 1250',
width: '40px',
height: '40px' });
const rect = addSVGElement(svg, 'rect', { x: '0',
y: '0',
width: '1250',
height: '1250',
fill: 'red' });
const animation = rect.animate({ fill: ['blue', 'lime'] }, 100 * MS_PER_SEC);
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 5,
'CSS animations on an in-view svg element which is inside transformed ' +
'parent should not be throttled.');
await ensureElementRemoval(div);
});
add_task(async function throttling_animations_out_of_view_svg() {
const div = addDiv(null, { style: 'overflow: scroll;' +
'height: 100px; width: 100px;' });
const svg = addSVGElement(div, 'svg', { viewBox: '-10 -10 0.1 0.1',
width: '50px',
height: '50px' });
const rect = addSVGElement(svg, 'rect', { width: '10',
height: '10',
fill: 'red' });
const animation = rect.animate({ fill: ['blue', 'lime'] }, 100 * MS_PER_SEC);
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'CSS animations on an out-of-view svg element with post-transform ' +
'should be throttled.');
await ensureElementRemoval(div);
});
add_task(async function no_throttling_animations_in_view_css_transform() {
const scrollDiv = addDiv(null, { style: 'overflow: scroll; ' +
'height: 100px; width: 100px;' });
const targetDiv = addDiv(null,
{ style: 'animation: on-main-thread 100s;' +
'transform: translate(-50px, -50px);' });
scrollDiv.appendChild(targetDiv);
const animation = targetDiv.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 5,
'CSS animation on an in-view element with pre-transform should not ' +
'be throttled.');
await ensureElementRemoval(scrollDiv);
});
add_task(async function throttling_animations_out_of_view_css_transform() {
const scrollDiv = addDiv(null, { style: 'overflow: scroll;' +
'height: 100px; width: 100px;' });
const targetDiv = addDiv(null,
{ style: 'animation: on-main-thread 100s;' +
'transform: translate(100px, 100px);' });
scrollDiv.appendChild(targetDiv);
const animation = targetDiv.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'CSS animation on an out-of-view element with pre-transform should be ' +
'throttled.');
await ensureElementRemoval(scrollDiv);
});
add_task(
async function throttling_animations_in_out_of_view_position_absolute_element() {
const parentDiv = addDiv(null,
{ style: 'position: absolute; top: -1000px;' });
const targetDiv = addDiv(null,
{ style: 'animation: on-main-thread 100s;' });
parentDiv.appendChild(targetDiv);
const animation = targetDiv.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'CSS animation in an out-of-view position absolute element should ' +
'be throttled');
await ensureElementRemoval(parentDiv);
}
);
add_task(
async function throttling_animations_on_out_of_view_position_absolute_element() {
const div = addDiv(null,
{ style: 'animation: on-main-thread 100s; ' +
'position: absolute; top: -1000px;' });
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'CSS animation on an out-of-view position absolute element should ' +
'be throttled');
await ensureElementRemoval(div);
}
);
add_task(
async function throttling_animations_in_out_of_view_position_fixed_element() {
const parentDiv = addDiv(null,
{ style: 'position: fixed; top: -1000px;' });
const targetDiv = addDiv(null,
{ style: 'animation: on-main-thread 100s;' });
parentDiv.appendChild(targetDiv);
const animation = targetDiv.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'CSS animation on an out-of-view position:fixed element should be ' +
'throttled');
await ensureElementRemoval(parentDiv);
}
);
add_task(
async function throttling_animations_on_out_of_view_position_fixed_element() {
const div = addDiv(null,
{ style: 'animation: on-main-thread 100s; ' +
'position: fixed; top: -1000px;' });
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'CSS animation on an out-of-view position:fixed element should be ' +
'throttled');
await ensureElementRemoval(div);
}
);
add_task(
async function no_throttling_animations_in_view_position_fixed_element() {
const iframe = document.createElement('iframe');
iframe.setAttribute('srcdoc', '<div id="target"></div>');
document.documentElement.appendChild(iframe);
await new Promise(resolve => {
iframe.addEventListener('load', () => {
resolve();
});
});
const target = iframe.contentDocument.getElementById('target');
target.style= 'position: fixed; top: 20px; width: 100px; height: 100px;';
const animation = target.animate({ zIndex: [ '0', '999' ] },
{ duration: 100 * MS_PER_SEC,
iterations: Infinity });
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStylingInTargetWindow(iframe.contentWindow, 5);
is(restyleCount, 5,
'CSS animation on an in-view position:fixed element should NOT be ' +
'throttled');
await ensureElementRemoval(iframe);
}
);
add_task(
async function throttling_position_absolute_animations_in_collapsed_iframe() {
const iframe = document.createElement('iframe');
iframe.setAttribute('srcdoc', '<div id="target"></div>');
iframe.style.height = '0px';
document.documentElement.appendChild(iframe);
await new Promise(resolve => {
iframe.addEventListener('load', () => {
resolve();
});
});
const target = iframe.contentDocument.getElementById("target");
target.style= 'position: absolute; top: 50%; width: 100px; height: 100px';
const animation = target.animate({ opacity: [0, 1] },
{ duration: 100 * MS_PER_SEC,
iterations: Infinity });
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStylingInTargetWindow(iframe.contentWindow, 5);
is(restyleCount, 0,
'Animation on position:absolute element in collapsed iframe should ' +
'be throttled');
await ensureElementRemoval(iframe);
}
);
add_task(
async function position_absolute_animations_in_collapsed_element() {
const parent = addDiv(null, { style: 'overflow: scroll; height: 0px;' });
const target = addDiv(null,
{ style: 'animation: on-main-thread 100s infinite;' +
'position: absolute; top: 50%;' +
'width: 100px; height: 100px;' });
parent.appendChild(target);
const animation = target.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 5,
'Animation on position:absolute element in collapsed element ' +
'should not be throttled');
await ensureElementRemoval(parent);
}
);
add_task(
async function throttling_position_absolute_animations_in_collapsed_element() {
const parent = addDiv(null, { style: 'overflow: scroll; height: 0px;' });
const target = addDiv(null,
{ style: 'animation: on-main-thread 100s infinite;' +
'position: absolute; top: 50%;' });
parent.appendChild(target);
const animation = target.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
todo_is(restyleCount, 0,
'Animation on collapsed position:absolute element in collapsed ' +
'element should be throttled');
await ensureElementRemoval(parent);
}
);
add_task_if_omta_enabled(
async function no_restyling_for_compositor_animation_on_unrelated_style_change() {
const div = addDiv(null);
const animation = div.animate({ opacity: [0, 1] }, 100 * MS_PER_SEC);
await waitForAnimationReadyToRestyle(animation);
ok(SpecialPowers.wrap(animation).isRunningOnCompositor,
'The opacity animation is running on the compositor');
div.style.setProperty('color', 'blue', '');
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'The opacity animation keeps running on the compositor when ' +
'color style is changed');
await ensureElementRemoval(div);
}
);
add_task(
async function no_overflow_transform_animations_in_scrollable_element() {
const parentElement = addDiv(null,
{ style: 'overflow-y: scroll; height: 100px;' });
const div = addDiv(null);
const animation =
div.animate({ transform: [ 'translateY(10px)', 'translateY(10px)' ] },
100 * MS_PER_SEC);
parentElement.appendChild(div);
await waitForAnimationReadyToRestyle(animation);
ok(SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = await observeStyling(20);
is(restyleCount, 0,
'No-overflow transform animations running on the compositor should ' +
'never update style on the main thread');
await ensureElementRemoval(parentElement);
}
);
add_task(async function no_flush_on_getAnimations() {
const div = addDiv(null);
const animation =
div.animate({ opacity: [ '0', '1' ] }, 100 * MS_PER_SEC);
await waitForAnimationReadyToRestyle(animation);
ok(SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = observeAnimSyncStyling(() => {
is(div.getAnimations().length, 1, 'There should be one animation');
});
is(restyleCount, 0,
'Element.getAnimations() should not flush throttled animation style');
await ensureElementRemoval(div);
});
add_task(async function restyling_for_throttled_animation_on_getAnimations() {
const div = addDiv(null, { style: 'animation: opacity 100s' });
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
ok(SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = observeAnimSyncStyling(() => {
div.style.animationDuration = '0s';
is(div.getAnimations().length, 0, 'There should be no animation');
});
is(restyleCount, 1, // For discarding the throttled animation.
'Element.getAnimations() should flush throttled animation style so ' +
'that the throttled animation is discarded');
await ensureElementRemoval(div);
});
add_task(
async function no_restyling_for_throttled_animation_on_querying_play_state() {
const div = addDiv(null, { style: 'animation: opacity 100s' });
const animation = div.getAnimations()[0];
const sibling = addDiv(null);
await waitForAnimationReadyToRestyle(animation);
ok(SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = observeAnimSyncStyling(() => {
sibling.style.opacity = '0.5';
is(animation.playState, 'running',
'Animation.playState should be running');
});
is(restyleCount, 0,
'Animation.playState should not flush throttled animation in the ' +
'case where there are only style changes that don\'t affect the ' +
'throttled animation');
await ensureElementRemoval(div);
await ensureElementRemoval(sibling);
}
);
add_task(
async function restyling_for_throttled_animation_on_querying_play_state() {
const div = addDiv(null, { style: 'animation: opacity 100s' });
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
ok(SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = observeAnimSyncStyling(() => {
div.style.animationPlayState = 'paused';
is(animation.playState, 'paused',
'Animation.playState should be reflected by pending style');
});
is(restyleCount, 1,
'Animation.playState should flush throttled animation style that ' +
'affects the throttled animation');
await ensureElementRemoval(div);
}
);
add_task(
async function no_restyling_for_throttled_transition_on_querying_play_state() {
const div = addDiv(null, { style: 'transition: opacity 100s; opacity: 0' });
const sibling = addDiv(null);
getComputedStyle(div).opacity;
div.style.opacity = 1;
const transition = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(transition);
ok(SpecialPowers.wrap(transition).isRunningOnCompositor);
const restyleCount = observeAnimSyncStyling(() => {
sibling.style.opacity = '0.5';
is(transition.playState, 'running',
'Animation.playState should be running');
});
is(restyleCount, 0,
'Animation.playState should not flush throttled transition in the ' +
'case where there are only style changes that don\'t affect the ' +
'throttled animation');
await ensureElementRemoval(div);
await ensureElementRemoval(sibling);
}
);
add_task(
async function restyling_for_throttled_transition_on_querying_play_state() {
const div = addDiv(null, { style: 'transition: opacity 100s; opacity: 0' });
getComputedStyle(div).opacity;
div.style.opacity = '1';
const transition = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(transition);
ok(SpecialPowers.wrap(transition).isRunningOnCompositor);
const restyleCount = observeAnimSyncStyling(() => {
div.style.transitionProperty = 'none';
is(transition.playState, 'idle',
'Animation.playState should be reflected by pending style change ' +
'which cancel the transition');
});
is(restyleCount, 1,
'Animation.playState should flush throttled transition style that ' +
'affects the throttled animation');
await ensureElementRemoval(div);
}
);
add_task(async function restyling_visibility_animations_on_in_view_element() {
const div = addDiv(null);
const animation =
div.animate({ visibility: ['hidden', 'visible'] }, 100 * MS_PER_SEC);
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 5,
'Visibility animation running on the main-thread on in-view element ' +
'should not be throttled');
await ensureElementRemoval(div);
});
add_task(async function restyling_outline_offset_animations_on_invisible_element() {
const div = addDiv(null,
{ style: 'visibility: hidden; ' +
'outline-style: solid; ' +
'outline-width: 1px;' });
const animation =
div.animate({ outlineOffset: [ '0px', '10px' ] },
{ duration: 100 * MS_PER_SEC,
iterations: Infinity });
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Outline offset animation running on the main-thread on invisible ' +
'element should be throttled');
await ensureElementRemoval(div);
});
add_task(async function restyling_transform_animations_on_invisible_element() {
const div = addDiv(null, { style: 'visibility: hidden;' });
const animation =
div.animate({ transform: [ 'none', 'rotate(360deg)' ] },
{ duration: 100 * MS_PER_SEC,
iterations: Infinity });
await waitForAnimationReadyToRestyle(animation);
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Transform animations on visibility hidden element should be throttled');
await ensureElementRemoval(div);
});
add_task(async function restyling_transform_animations_on_invisible_element() {
const div = addDiv(null, { style: 'visibility: hidden;' });
const animation =
div.animate([ { transform: 'rotate(360deg)' } ],
{ duration: 100 * MS_PER_SEC,
iterations: Infinity });
await waitForAnimationReadyToRestyle(animation);
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Transform animations without 100% keyframe on visibility hidden ' +
'element should be throttled');
await ensureElementRemoval(div);
});
add_task(async function restyling_translate_animations_on_invisible_element() {
const div = addDiv(null, { style: 'visibility: hidden;' });
const animation =
div.animate([ { translate: '100px' } ],
{ duration: 100 * MS_PER_SEC,
iterations: Infinity });
await waitForAnimationReadyToRestyle(animation);
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Translate animations without 100% keyframe on visibility hidden ' +
'element should be throttled');
await ensureElementRemoval(div);
});
add_task(async function restyling_rotate_animations_on_invisible_element() {
const div = addDiv(null, { style: 'visibility: hidden;' });
const animation =
div.animate([ { rotate: '45deg' } ],
{ duration: 100 * MS_PER_SEC,
iterations: Infinity });
await waitForAnimationReadyToRestyle(animation);
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Rotate animations without 100% keyframe on visibility hidden ' +
'element should be throttled');
await ensureElementRemoval(div);
});
add_task(async function restyling_scale_animations_on_invisible_element() {
const div = addDiv(null, { style: 'visibility: hidden;' });
const animation =
div.animate([ { scale: '2 2' } ],
{ duration: 100 * MS_PER_SEC,
iterations: Infinity });
await waitForAnimationReadyToRestyle(animation);
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Scale animations without 100% keyframe on visibility hidden ' +
'element should be throttled');
await ensureElementRemoval(div);
});
add_task(
async function restyling_transform_animations_having_abs_pos_child_on_invisible_element() {
const div = addDiv(null, { style: 'visibility: hidden;' });
const child = addDiv(null, { style: 'position: absolute; top: 100px;' });
div.appendChild(child);
const animation =
div.animate({ transform: [ 'none', 'rotate(360deg)' ] },
{ duration: 100 * MS_PER_SEC,
iterations: Infinity });
await waitForAnimationReadyToRestyle(animation);
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Transform animation having an absolutely positioned child on ' +
'visibility hidden element should be throttled');
await ensureElementRemoval(div);
});
add_task(async function no_restyling_animations_in_out_of_view_iframe() {
const div = addDiv(null, { style: 'overflow-y: scroll; height: 100px;' });
const iframe = document.createElement('iframe');
iframe.setAttribute(
'srcdoc',
'<div style="height: 100px;"></div><div id="target"></div>');
div.appendChild(iframe);
await new Promise(resolve => {
iframe.addEventListener('load', () => {
resolve();
});
});
const target = iframe.contentDocument.getElementById("target");
target.style= 'width: 100px; height: 100px;';
const animation = target.animate({ zIndex: [ '0', '999' ] },
100 * MS_PER_SEC);
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStylingInTargetWindow(iframe.contentWindow, 5);
is(restyleCount, 0,
'Animation in out-of-view iframe should be throttled');
await ensureElementRemoval(div);
});
// Tests that transform animations are not able to run on the compositor due
// to layout restrictions (e.g. animations on a large size frame) doesn't
// flush layout at all.
add_task(async function flush_layout_for_transform_animations() {
// Set layout.animation.prerender.partial to disallow transform animations
// on large frames to be sent to the compositor.
await SpecialPowers.pushPrefEnv({
set: [['layout.animation.prerender.partial', false]] });
const div = addDiv(null, { style: 'width: 10000px; height: 10000px;' });
const animation = div.animate([ { transform: 'rotate(360deg)', } ],
{ duration: 100 * MS_PER_SEC,
// Set step-end to skip further restyles.
easing: 'step-end' });
const FLUSH_LAYOUT = SpecialPowers.DOMWindowUtils.FLUSH_LAYOUT;
ok(SpecialPowers.DOMWindowUtils.needsFlush(FLUSH_LAYOUT),
'Flush is needed for the appended div');
await waitForAnimationReadyToRestyle(animation);
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor, "Shouldn't be running in the compositor");
// We expect one restyle from the initial animation compose.
await waitForNextFrame();
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor, "Still shouldn't be running in the compositor");
ok(!SpecialPowers.DOMWindowUtils.needsFlush(FLUSH_LAYOUT),
'No further layout flush needed');
await ensureElementRemoval(div);
});
add_task(async function partial_prerendered_transform_animations() {
await SpecialPowers.pushPrefEnv({
set: [['layout.animation.prerender.partial', true]] });
const div = addDiv(null, { style: 'width: 10000px; height: 10000px;' });
const animation = div.animate(
// Use the same value both for `from` and `to` to avoid jank on the
// compositor.
{ transform: ['rotate(0deg)', 'rotate(0deg)'] },
100 * MS_PER_SEC
);
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5)
is(restyleCount, 0,
'Transform animation with partial pre-rendered should never cause ' +
'restyles');
await ensureElementRemoval(div);
});
add_task(async function restyling_on_create_animation() {
const div = addDiv();
let priorAnimationTriggeredRestyles = SpecialPowers.DOMWindowUtils.animationTriggeredRestyles;
const animationA = div.animate(
{ transform: ['none', 'rotate(360deg)'] },
100 * MS_PER_SEC
);
const animationB = div.animate({ opacity: [0, 1] }, 100 * MS_PER_SEC);
const animationC = div.animate(
{ color: ['blue', 'green'] },
100 * MS_PER_SEC
);
const animationD = div.animate(
{ width: ['100px', '200px'] },
100 * MS_PER_SEC
);
const animationE = div.animate(
{ height: ['100px', '200px'] },
100 * MS_PER_SEC
);
const restyleCount = SpecialPowers.DOMWindowUtils.animationTriggeredRestyles - priorAnimationTriggeredRestyles;
is(restyleCount, 0, 'Creating animations should not flush styles');
await ensureElementRemoval(div);
});
add_task(async function out_of_view_background_position() {
const div = addDiv(null, {
style: `
background-image: linear-gradient(90deg, rgb(224, 224, 224), rgb(241, 241, 241) 30%, rgb(224, 224, 224) 60%);
background-size: 80px;
animation: background-position 100s infinite;
transform: translateY(-400px);
`,
})
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 0, 'background-position animations can be throttled');
await ensureElementRemoval(div);
});
add_task_if_omta_enabled(async function no_restyling_animations_in_opacity_zero_element() {
const div = addDiv(null, { style: 'animation: on-main-thread 100s infinite; opacity: 0' });
const animation = div.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations running on the main thread in opacity: 0 element ' +
'should never cause restyles');
await ensureElementRemoval(div);
});
add_task_if_omta_enabled(async function no_restyling_compositor_animations_in_opacity_zero_descendant() {
const container = addDiv(null, { style: 'opacity: 0' });
const child = addDiv(null, { style: 'animation: background-color 100s infinite;' });
container.appendChild(child);
const animation = child.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations running on the compositor in opacity zero descendant element ' +
'should never cause restyles');
await ensureElementRemoval(container);
});
add_task_if_omta_enabled(async function no_restyling_compositor_animations_in_opacity_zero_descendant_abspos() {
const container = addDiv(null, { style: 'opacity: 0' });
const child = addDiv(null, { style: 'position: absolute; animation: background-color 100s infinite;' });
container.appendChild(child);
const animation = child.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations running on the compositor in opacity zero abspos descendant element ' +
'should never cause restyles');
await ensureElementRemoval(container);
});
add_task_if_omta_enabled(async function no_restyling_compositor_animations_in_opacity_zero_element() {
const child = addDiv(null, { style: 'animation: background-color 100s infinite; opacity: 0' });
const animation = child.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
ok(!SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations running on the compositor in opacity zero element ' +
'should never cause restyles');
await ensureElementRemoval(child);
});
add_task_if_omta_enabled(async function restyling_main_thread_animations_in_opacity_zero_descendant_after_root_opacity_animation() {
const container = addDiv(null, { style: 'opacity: 0' });
const child = addDiv(null, { style: 'animation: on-main-thread 100s infinite;' });
container.appendChild(child);
// Animate the container from 1 to zero opacity and ensure the child animation is throttled then.
const containerAnimation = container.animate({ opacity: [ '1', '0' ] }, 100);
await containerAnimation.finished;
const animation = child.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'Animations running on the compositor in opacity zero descendant element ' +
'should never cause restyles after root animation has finished');
await ensureElementRemoval(container);
});
add_task_if_omta_enabled(async function restyling_main_thread_animations_in_opacity_zero_descendant_during_root_opacity_animation() {
const container = addDiv(null, { style: 'opacity: 0; animation: opacity-from-zero 100s infinite' });
const child = addDiv(null, { style: 'animation: on-main-thread 100s infinite;' });
container.appendChild(child);
const animation = child.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
const restyleCount = await observeStyling(5);
is(restyleCount, 5,
'Animations in opacity zero descendant element ' +
'should not be throttled if root is animating opacity');
await ensureElementRemoval(container);
});
add_task_if_omta_enabled(async function restyling_omt_animations_in_opacity_zero_descendant_during_root_opacity_animation() {
const container = addDiv(null, { style: 'opacity: 0; animation: opacity-from-zero 100s infinite' });
const child = addDiv(null, { style: 'animation: rotate 100s infinite' });
container.appendChild(child);
const animation = child.getAnimations()[0];
await waitForAnimationReadyToRestyle(animation);
ok(SpecialPowers.wrap(animation).isRunningOnCompositor);
await ensureElementRemoval(container);
});
add_task_if_omta_enabled(async function transparent_background_color_animations() {
const div = addDiv(null);
const animation =
div.animate({ backgroundColor: [ 'rgb(0, 200, 0, 0)',
'rgb(200, 0, 0, 0.1)' ] },
{ duration: 100 * MS_PER_SEC,
// An easing function producing zero in the first half of
// the duration.
easing: 'cubic-bezier(1, 0, 1, 0)' });
await waitForAnimationReadyToRestyle(animation);
ok(SpecialPowers.wrap(animation).isRunningOnCompositor);
const restyleCount = await observeStyling(5);
is(restyleCount, 0,
'transparent background-color animation should not update styles on ' +
'the main thread');
await ensureElementRemoval(div);
});
add_task_if_omta_enabled(async function transform_animation_on_collapsed_element() {
const iframe = document.createElement('iframe');
document.body.appendChild(iframe);
// Load a cross origin iframe.
const targetURL = SimpleTest.getTestFileURL("empty.html")
.replace(window.location.origin, "http://example.com/");
iframe.src = targetURL;
await new Promise(resolve => {
iframe.onload = resolve;
});
await SpecialPowers.spawn(iframe, [MS_PER_SEC], async (MS_PER_SEC) => {
// Create a flex item with "preserve-3d" having an abs-pos child inside
// a grid container.
// These styles make the flex item size (0x0).
const gridContainer = content.document.createElement("div");
gridContainer.style.display = "grid";
gridContainer.style.placeItems = "center";
const target = content.document.createElement("div");
target.style.display = "flex";
target.style.transformStyle = "preserve-3d";
gridContainer.appendChild(target);
const child = content.document.createElement("div");
child.style.position = "absolute";
child.style.transform = "rotateY(0deg)";
child.style.width = "100px";
child.style.height = "100px";
child.style.backgroundColor = "green";
target.appendChild(child);
content.document.body.appendChild(gridContainer);
const animation =
target.animate({ transform: [ "rotateY(0deg)", "rotateY(360deg)" ] },
{ duration: 100 * MS_PER_SEC,
id: "test",
easing: 'step-end' });
await content.wrappedJSObject.waitForAnimationReadyToRestyle(animation);
ok(SpecialPowers.wrap(animation).isRunningOnCompositor,
'transform animation on a collapsed element should run on the ' +
'compositor');
const restyleCount = await content.wrappedJSObject.observeStyling(5);
is(restyleCount, 0,
'transform animation on a collapsed element animation should not ' +
'update styles on the main thread');
});
await ensureElementRemoval(iframe);
});
});
</script>
</body>
|