|
test('IE hacks', function () { |
|
assertRuleSet('selector { display: inline-block; *display: inline; }', Rules.IEStarHack); |
|
assertRuleSet('selector { background: #00f; /* all browsers including Mac IE */ *background: #f00; /* IE 7 and below */ _background: #f60; /* IE 6 and below */ }', Rules.IEStarHack, Rules.IEStarHack); |
|
}); |
* should start rule parsing for css nesting.
Maybe it is safe to remove the custom handling for IE star hacks, given the age of the browsers targeted by these hacks.
vscode-css-languageservice/src/test/css/lint.test.ts
Lines 232 to 235 in 6db83e5
*should start rule parsing for css nesting.Maybe it is safe to remove the custom handling for IE star hacks, given the age of the browsers targeted by these hacks.