Skip to content

Commit c502a29

Browse files
authored
Merge pull request #241 from unexpectedjs/ssimonsen/fix-dashes-in-styles
Allow dashes in style names and values
2 parents e1419c6 + dbd61e8 commit c502a29

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function isEnumeratedAttribute(attrName) {
8585
function validateStyles(expect, str) {
8686
const invalidStyles = str
8787
.split(';')
88-
.filter(part => !/^\s*\w+\s*:\s*\w+\s*$|^$/.test(part));
88+
.filter(part => !/^\s*(\w|-)+\s*:\s*(\w|-)+\s*$|^$/.test(part));
8989

9090
if (invalidStyles.length > 0) {
9191
expect.errorMode = 'nested';

test/index.spec.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -1822,14 +1822,18 @@ describe('unexpected-dom', () => {
18221822

18231823
it('should succeed when the subject has an extra inline style', () =>
18241824
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+
),
18261828
'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+
)
18281832
));
18291833

18301834
it('should not fail for invalid style attributes on the LHS', () =>
18311835
expect(
1832-
parseHtml('<div style="color; width: 120px;">hey</div>'),
1836+
parseHtml('<div style="color; width: 120px; z-index: 700">hey</div>'),
18331837
'to satisfy',
18341838
parseHtml('<div style="width: 120px;">hey</div>')
18351839
));

0 commit comments

Comments
 (0)