Bug 1323330 - Part 2: Skip test cases involving missing keyframs. r=boris

MozReview-Commit-ID: 5IJWDW8KS7q

--HG--
extra : rebase_source : c1186167ab6cb7018b19c3d05c7f1148f5b05e56
This commit is contained in:
Hiroyuki Ikezoe 2016-12-14 13:54:10 +09:00
Родитель 8609a02cce
Коммит 1b2cb1b76d
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -811,7 +811,8 @@ waitForAllPaints(function() {
// Tests that additive animations don't throttle at all.
add_task(function* no_throttling_animations_out_of_view_element() {
if (!SpecialPowers.getBoolPref('dom.animations.offscreen-throttling')) {
if (!SpecialPowers.getBoolPref('dom.animations.offscreen-throttling') ||
!SpecialPowers.getBoolPref('dom.animations-api.core.enabled')) {
return;
}
@ -831,7 +832,8 @@ waitForAllPaints(function() {
// Counter part of the above test.
add_task(function* no_restyling_discrete_animations_out_of_view_element() {
if (!SpecialPowers.getBoolPref('dom.animations.offscreen-throttling')) {
if (!SpecialPowers.getBoolPref('dom.animations.offscreen-throttling') ||
!SpecialPowers.getBoolPref('dom.animations-api.core.enabled')) {
return;
}