File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1278,10 +1278,10 @@ QUnit.test( "Do not append px to most properties not accepting integer values",
1278
1278
assert . equal ( $div . css ( "letter-spacing" ) , "2px" , "Do not append px to 'letter-spacing'" ) ;
1279
1279
} ) ;
1280
1280
1281
- QUnit . test ( "Append px to whitelisted properties" , function ( assert ) {
1281
+ QUnit . test ( "Append px to allowlisted properties" , function ( assert ) {
1282
1282
var prop ,
1283
1283
$div = jQuery ( "<div>" ) . appendTo ( "#qunit-fixture" ) ,
1284
- whitelist = {
1284
+ allowlist = {
1285
1285
margin : "marginTop" ,
1286
1286
marginTop : undefined ,
1287
1287
marginRight : undefined ,
@@ -1314,10 +1314,10 @@ QUnit.test( "Append px to whitelisted properties", function( assert ) {
1314
1314
borderLeftWidth : undefined
1315
1315
} ;
1316
1316
1317
- assert . expect ( ( Object . keys ( whitelist ) . length ) * 2 ) ;
1317
+ assert . expect ( ( Object . keys ( allowlist ) . length ) * 2 ) ;
1318
1318
1319
- for ( prop in whitelist ) {
1320
- var propToCheck = whitelist [ prop ] || prop ,
1319
+ for ( prop in allowlist ) {
1320
+ var propToCheck = allowlist [ prop ] || prop ,
1321
1321
kebabProp = prop . replace ( / [ A - Z ] / g, function ( match ) {
1322
1322
return "-" + match . toLowerCase ( ) ;
1323
1323
} ) ,
You can’t perform that action at this time.
0 commit comments