Bug 1255710 - Part 2: Enable tests for 'transform-style: preserve-3d'. r?birtles draft
authorHiroyuki Ikezoe <hiikezoe@mozilla-japan.org>
Tue, 29 Mar 2016 12:50:50 +0900
changeset 345455 700da1a8279500a68a9309f9b9911d0f88de3d4b
parent 345454 f694d932a7586941efcd7ad9ae4413485f7e67b5
child 517195 c5679cd2fd84a41f89da29025d76fca4fd5a697e
push id14089
push userhiikezoe@mozilla-japan.org
push dateTue, 29 Mar 2016 10:22:38 +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;