Bug 1456679 - Enable tests in test_animations_omta.html on WebRender. r=kats

MozReview-Commit-ID: LOMQjkMYMnl

--HG--
extra : rebase_source : 6833ac484da68243f8491f2d852dc99384504a77
This commit is contained in:
Hiroyuki Ikezoe 2018-05-08 15:59:01 +09:00
Родитель 8a0839c09a
Коммит 26dd062cf9
1 изменённых файлов: 3 добавлений и 10 удалений

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

@ -181,9 +181,6 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=964646
<script type="application/javascript">
"use strict";
const isWebRender =
SpecialPowers.DOMWindowUtils.layerManagerType == 'WebRender';
/** Test for css3-animations running on the compositor thread (Bug 964646) **/
// Global state
@ -340,13 +337,9 @@ async function testFillMode(fillMode, fillsBackwards, fillsForwards)
done_div();
}
// FIXME: Bug 1456679: On WebRender these test cases incorrectly get style value
// on the compositor when the animation is in-delay phase.
if (!isWebRender) {
addAsyncAnimTest(function() { return testFillMode("", false, false); });
addAsyncAnimTest(function() { return testFillMode("none", false, false); });
addAsyncAnimTest(function() { return testFillMode("forwards", false, true); });
}
addAsyncAnimTest(function() { return testFillMode("", false, false); });
addAsyncAnimTest(function() { return testFillMode("none", false, false); });
addAsyncAnimTest(function() { return testFillMode("forwards", false, true); });
addAsyncAnimTest(function() { return testFillMode("backwards", true, false); });
addAsyncAnimTest(function() { return testFillMode("both", true, true); });