You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reporter.report("The property "+item+" is compatible with "+propertiesSpecified+" and should be included as well.",event.selectors[0].line,event.selectors[0].col,rule);
162
+
reporter.report("The property "+item+" is compatible with "+propertiesSpecified+" and should be included as well.",value.actualNodes[0].line,value.actualNodes[0].col,rule);
Assert.areEqual("The property -moz-border-radius is compatible with -webkit-border-radius and should be included as well.",result.messages[0].message);
15
+
Assert.areEqual(6,result.messages[0].col);
16
+
Assert.areEqual(1,result.messages[0].line);
15
17
},
16
18
17
19
"Using -webkit-transition and -moz-transition should warn to also include -o-transition and -ms-transition.": function(){
18
20
varresult=CSSLint.verify("h1 { -webkit-transition: height 20px 1s; -moz-transition: height 20px 1s; }",{"compatible-vendor-prefixes": 1});
Assert.areEqual("The property -o-transition is compatible with -webkit-transition and -moz-transition and should be included as well.",result.messages[0].message);
Assert.areEqual("The property -ms-transition is compatible with -webkit-transition and -moz-transition and should be included as well.",result.messages[1].message);
28
+
Assert.areEqual(6,result.messages[1].col);
29
+
Assert.areEqual(1,result.messages[1].line);
30
+
24
31
},
25
32
26
33
"Using -webkit-transform should warn to also include -moz-transform, -ms-transform, and -o-transform.": function(){
0 commit comments