Bug 1368610 - Part 6: Add tests for valid inherit value during animation. r?hiro draft
authorDaisuke Akatsuka <dakatsuka@mozilla.com>
Mon, 12 Jun 2017 10:17:25 +0900
changeset 592299 7298d854135cfc184da3c01c6365464791b04afe
parent 591406 f4262773c4331d4ae139be536ce278ea9aad3436
child 632766 1dbcb08d53dc2edee0bdb48b27942ac5ed854189
push id63330
push userbmo:dakatsuka@mozilla.com
push dateMon, 12 Jun 2017 01:17:44 +0000
reviewershiro
bugs1368610
milestone55.0a1
Bug 1368610 - Part 6: Add tests for valid inherit value during animation. r?hiro This tests are to confirm either we could get valid value of 'inherit' of keyframe. Also, this tests are for clone_XX methods of stylo as well. MozReview-Commit-ID: J6HZBRZB5am
dom/animation/test/mozilla/test_moz-prefixed-properties.html
--- a/dom/animation/test/mozilla/test_moz-prefixed-properties.html
+++ b/dom/animation/test/mozilla/test_moz-prefixed-properties.html
@@ -15,16 +15,19 @@
 const testcases = [
   {
     property: "-moz-box-align"
   },
   {
     property: "-moz-box-direction"
   },
   {
+    property: "-moz-box-ordinal-group"
+  },
+  {
     property: "-moz-box-orient",
     expectedValueMap: {
       "block-axis": "vertical",
       "inline-axis": "horizontal",
     }
   },
   {
     property: "-moz-box-pack"
@@ -35,27 +38,36 @@ const testcases = [
   {
     property: "-moz-orient"
   },
   {
     property: "-moz-osx-font-smoothing",
     pref: "layout.css.osx-font-smoothing.enabled"
   },
   {
+    property: "-moz-stack-sizing"
+  },
+  {
+    property: "-moz-text-size-adjust"
+  },
+  {
     property: "-moz-user-focus"
   },
   {
     property: "-moz-user-input"
   },
   {
     property: "-moz-user-modify"
   },
   {
     property: "-moz-window-dragging"
   },
+  {
+    property: "-moz-force-broken-image-icon"
+  },
 ];
 
 testcases.forEach(testcase => {
   if (testcase.pref && !IsCSSPropertyPrefEnabled(testcase.pref)) {
     return;
   }
 
   const property = gCSSProperties[testcase.property];