Bug 1255710 - Part 2: Enable tests for 'transform-style: preserve-3d'. r?birtles draft
authorHiroyuki Ikezoe <hiikezoe@mozilla-japan.org>
Mon, 28 Mar 2016 10:00:47 +0900
changeset 345034 928fe685cfbf5f038856d7d4fe3aea7effc56d9c
parent 345033 6c319a33c5ab226e562341860f65d7a52ab067d5
child 517113 54bb0edc0b2894746a520c4fa4f0783674d90e15
push id14001
push userbmo:hiroyuke.ikezoe@gmail.com
push dateMon, 28 Mar 2016 01:30:15 +0000
reviewersbirtles
bugs1255710
milestone48.0a1
Bug 1255710 - Part 2: Enable tests for 'transform-style: preserve-3d'. r?birtles MozReview-Commit-ID: HzmFJErruwp
dom/animation/test/chrome/test_animation_performance_warning.html
--- a/dom/animation/test/chrome/test_animation_performance_warning.html
+++ b/dom/animation/test/chrome/test_animation_performance_warning.html
@@ -507,21 +507,16 @@ function start() {
         assert_animation_property_state_equals(
           animation.effect.getProperties(),
           subtest.expected);
       });
     }, subtest.desc);
   });
 
   gPerformanceWarningTests.forEach(function(subtest) {
-    // FIXME: Bug 1255710: 'preserve-3d' frame breaks other tests,
-    // we should skip all 'preserve-3d' tests here.
-    if (subtest.desc.includes('preserve-3d')) {
-      return;
-    }
     promise_test(function(t) {
       var div = addDiv(t, { class: 'compositable' });
       var animation = div.animate(subtest.frames, 100000);
       return animation.ready.then(function() {
         assert_property_state_on_compositor(
           animation.effect.getProperties(),
           subtest.expected);
         div.style = subtest.style;
@@ -536,21 +531,16 @@ function start() {
         assert_property_state_on_compositor(
           animation.effect.getProperties(),
           subtest.expected);
       });
     }, subtest.desc);
   });
 
   gMultipleAsyncAnimationsTests.forEach(function(subtest) {
-    // FIXME: Bug 1255710: 'preserve-3d' frame breaks other tests,
-    // we should skip all 'preserve-3d' tests here.
-    if (subtest.desc.includes('preserve-3d')) {
-      return;
-    }
     promise_test(function(t) {
       var div = addDiv(t, { class: 'compositable' });
       var animations = subtest.animations.map(function(anim) {
         var animation = div.animate(anim.frames, 100000);
 
         // Bind expected values to animation object.
         animation.expected = anim.expected;
         return animation;