Skip to content

Commit ebcf954

Browse files
authored
Add test for data attr prefixing #79 (#81)
1 parent 8185085 commit ebcf954

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

test/fixtures/transform.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,7 @@ body {
2323
.class-b {
2424
color: deepskyblue;
2525
}
26+
27+
[data-world] .d {
28+
padding: 10px 20px;
29+
}

test/fixtures/transform.expected.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,7 @@ body.hello {
2323
.hello .class-b {
2424
color: deepskyblue;
2525
}
26+
27+
.hello [data-world] .d {
28+
padding: 10px 20px;
29+
}

0 commit comments

Comments
 (0)