Verify issue #883

This commit is contained in:
Liam Newman 2016-08-09 13:15:31 -07:00
parent 8a804dfb9d
commit 5a9fcfe8f7
3 changed files with 16 additions and 1 deletions

View File

@ -306,6 +306,10 @@ function run_css_tests(test_obj, Urlencoded, js_beautify, html_beautify, css_bea
'.card-blue ::-webkit-input-placeholder {\n' +
'\tcolor: #87D1FF;\n' +
'}');
t(
'div [attr] :not(.class) {\n' +
'\tcolor: red;\n' +
'}');
reset_options();

View File

@ -269,6 +269,10 @@ class CSSBeautifierTest(unittest.TestCase):
'.card-blue ::-webkit-input-placeholder {\n' +
'\tcolor: #87D1FF;\n' +
'}')
t(
'div [attr] :not(.class) {\n' +
'\tcolor: red;\n' +
'}')
self.reset_options();

View File

@ -253,9 +253,16 @@ exports.test_data = {
'\tcolor: #87D1FF;',
'}'
]
},
{
unchanged: [
'div [attr] :not(.class) {',
'\tcolor: red;',
'}'
]
}
]
}, {
}]
};
};