File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ function isEnumeratedAttribute(attrName) {
85
85
function validateStyles ( expect , str ) {
86
86
const invalidStyles = str
87
87
. split ( ';' )
88
- . filter ( part => ! / ^ \s * \w + \s * : \s * \w + \s * $ | ^ $ / . test ( part ) ) ;
88
+ . filter ( part => ! / ^ \s * ( \w | - ) + \s * : \s * ( \w | - ) + \s * $ | ^ $ / . test ( part ) ) ;
89
89
90
90
if ( invalidStyles . length > 0 ) {
91
91
expect . errorMode = 'nested' ;
Original file line number Diff line number Diff line change @@ -1822,14 +1822,18 @@ describe('unexpected-dom', () => {
1822
1822
1823
1823
it ( 'should succeed when the subject has an extra inline style' , ( ) =>
1824
1824
expect (
1825
- parseHtml ( '<div style="color: tan; width: 120px;">hey</div>' ) ,
1825
+ parseHtml (
1826
+ '<div style="color: tan; width: 120px; z-index: 700; background-repeat: no-repeat">hey</div>'
1827
+ ) ,
1826
1828
'to satisfy' ,
1827
- parseHtml ( '<div style="color: tan;">hey</div>' )
1829
+ parseHtml (
1830
+ '<div style="color: tan; z-index: 700;background-repeat: no-repeat">hey</div>'
1831
+ )
1828
1832
) ) ;
1829
1833
1830
1834
it ( 'should not fail for invalid style attributes on the LHS' , ( ) =>
1831
1835
expect (
1832
- parseHtml ( '<div style="color; width: 120px;">hey</div>' ) ,
1836
+ parseHtml ( '<div style="color; width: 120px; z-index: 700 ">hey</div>' ) ,
1833
1837
'to satisfy' ,
1834
1838
parseHtml ( '<div style="width: 120px;">hey</div>' )
1835
1839
) ) ;
You can’t perform that action at this time.
0 commit comments