Bug 1207734 - Part 9.a. (testing) Replaces tabs with spaces in bug_1112014.html. r=dholbert draft
authorBrian Birtles <birtles@gmail.com>
Tue, 30 Jan 2018 14:02:32 -0500
changeset 748977 d98835388589ce36cb0ddf416c276be839ffada9
parent 748976 49632ce832bdfff9cb26de375f826b32047fc467
child 748978 9e6964d41ad42ce763751ae68bbc3396acd161e9
push id97286
push userbbirtles@mozilla.com
push dateTue, 30 Jan 2018 19:06:18 +0000
reviewersdholbert
bugs1207734
milestone60.0a1
Bug 1207734 - Part 9.a. (testing) Replaces tabs with spaces in bug_1112014.html. r=dholbert MozReview-Commit-ID: 8k9qD9A3BS0
layout/style/test/test_bug1112014.html
--- a/layout/style/test/test_bug1112014.html
+++ b/layout/style/test/test_bug1112014.html
@@ -84,30 +84,30 @@ https://bugzilla.mozilla.org/show_bug.cg
 
   // Ensure that all the TYPE_ constants have a representative
   // test value, to try to ensure that this test is updated
   // whenever a new type is added.
   let reps = [];
   for (let tc in InspectorUtils) {
     if (/TYPE_/.test(tc)) {
       if (!(tc in testValues)) {
-	reps.push(tc);
+        reps.push(tc);
       }
     }
   }
   is(reps.join(","), "", "all types have representative test value");
 
   for (let propertyName in gCSSProperties) {
     let prop = gCSSProperties[propertyName];
 
     for (let iter in testValues) {
       let testValue = testValues[iter];
       if (propertyName in overrideValues &&
-	  iter in overrideValues[propertyName]) {
-	testValue = overrideValues[propertyName][iter];
+          iter in overrideValues[propertyName]) {
+        testValue = overrideValues[propertyName][iter];
       }
 
       let supported =
         InspectorUtils.cssPropertySupportsType(propertyName, InspectorUtils[iter]);
       let parsed = CSS.supports(propertyName, testValue);
       is(supported, parsed, propertyName + " supports " + iter);
     }
   }