Bug 1378076 - Part 4: add tests for moz prefixed properties. r?hiro draft
authorDaisuke Akatsuka <dakatsuka@mozilla.com>
Thu, 20 Jul 2017 15:21:12 +0900
changeset 611993 de8226f758dbe9965c6134ab625721e2d0372a5b
parent 611795 2f1adcc174ad91375b40dc39815fd1f8b9c4e213
child 611994 d5658f2b8bc2a0df7868f3ecc93d3fe72d099e89
push id69353
push userbmo:dakatsuka@mozilla.com
push dateThu, 20 Jul 2017 07:03:59 +0000
reviewershiro
bugs1378076
milestone56.0a1
Bug 1378076 - Part 4: add tests for moz prefixed properties. r?hiro Add tests for following moz prefixed properties. * -moz-user-select MozReview-Commit-ID: 6X3iNYpc6kH
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
@@ -39,16 +39,19 @@ const testcases = [
   },
   {
     property: "-moz-box-pack"
   },
   {
     property: "-moz-float-edge"
   },
   {
+    property: "-moz-force-broken-image-icon"
+  },
+  {
     property: "-moz-orient"
   },
   {
     property: "-moz-osx-font-smoothing",
     pref: "layout.css.osx-font-smoothing.enabled"
   },
   {
     property: "-moz-stack-sizing"
@@ -61,20 +64,20 @@ const testcases = [
   },
   {
     property: "-moz-user-input"
   },
   {
     property: "-moz-user-modify"
   },
   {
-    property: "-moz-window-dragging"
+    property: "-moz-user-select"
   },
   {
-    property: "-moz-force-broken-image-icon"
+    property: "-moz-window-dragging"
   },
 ];
 
 testcases.forEach(testcase => {
   if (testcase.pref && !IsCSSPropertyPrefEnabled(testcase.pref)) {
     return;
   }