File tree Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -73,11 +73,7 @@ CSSLint.addRule({
73
73
"-ms-transform-origin" : "transform-origin" ,
74
74
75
75
"-moz-box-sizing" : "box-sizing" ,
76
- "-webkit-box-sizing" : "box-sizing" ,
77
-
78
- "-moz-user-select" : "user-select" ,
79
- "-khtml-user-select" : "user-select" ,
80
- "-webkit-user-select" : "user-select"
76
+ "-webkit-box-sizing" : "box-sizing"
81
77
} ;
82
78
83
79
//event handler for beginning of rules
Original file line number Diff line number Diff line change 59
59
Assert . areEqual ( "Missing standard property 'box-shadow' to go along with '-moz-box-shadow'." , result . messages [ 0 ] . message ) ;
60
60
} ,
61
61
62
- "Using -moz-user-select should result in a warning." : function ( ) {
62
+ "Using -moz-user-select should not result in a warning." : function ( ) {
63
63
var result = CSSLint . verify ( "h1 { -moz-user-select:none; }" , { "vendor-prefix" : 1 } ) ;
64
- Assert . areEqual ( 1 , result . messages . length ) ;
65
- Assert . areEqual ( "warning" , result . messages [ 0 ] . type ) ;
66
- Assert . areEqual ( "Missing standard property 'user-select' to go along with '-moz-user-select'." , result . messages [ 0 ] . message ) ;
64
+ Assert . areEqual ( 0 , result . messages . length ) ;
67
65
} ,
68
66
69
67
"Using @font-face should not result in an error (#90)" : function ( ) {
You can’t perform that action at this time.
0 commit comments