Bug 1374564 - Remove skipping code of getkeyframes which used text-shadow serialization. r?hiro draft
authorMantaroh Yoshinaga <mantaroh@gmail.com>
Fri, 30 Jun 2017 15:11:33 -0700
changeset 602957 6374753c33ee69cc23fdb0f500beed4c6d2d252b
parent 602956 95274f853560ca9abfe812a72e83f73bf74aa3f5
child 602958 1636704285909601fc9c7aa3020b017280e0a5bf
push id66632
push userbmo:mantaroh@gmail.com
push dateFri, 30 Jun 2017 23:39:32 +0000
reviewershiro
bugs1374564
milestone56.0a1
Bug 1374564 - Remove skipping code of getkeyframes which used text-shadow serialization. r?hiro MozReview-Commit-ID: Fh9D8dXMF4R
dom/animation/test/css-animations/file_keyframeeffect-getkeyframes.html
--- a/dom/animation/test/css-animations/file_keyframeeffect-getkeyframes.html
+++ b/dom/animation/test/css-animations/file_keyframeeffect-getkeyframes.html
@@ -563,20 +563,16 @@ test(function(t) {
 }, 'KeyframeEffectReadOnly.getKeyframes() returns expected values for ' +
    'animations with filter properties and missing keyframes');
 
 // Gecko-specific test case: We are specifically concerned here that the
 // computed value for text-shadow and a "none" specified on a keyframe
 // are correctly represented.
 
 test(function(t) {
-  if (!isServoEnabled()) {
-    // FIXME : Bug 1374564 : the serialization of text-shadow is wrong on gecko
-    return;
-  }
   var div = addDiv(t);
 
   div.style.textShadow = '1px 1px 2px rgb(0, 0, 0), ' +
                          '0 0 16px rgb(0, 0, 255), ' +
                          '0 0 3.2px rgb(0, 0, 255)';
   div.style.animation = 'anim-text-shadow 100s';
   var frames = getKeyframes(div);