We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9075cfc commit 99ffe87Copy full SHA for 99ffe87
test/simpleTest.js
@@ -13,6 +13,21 @@ describe("simple", function() {
13
test("escaped selector", ".u-m\\+ { a: b c d; }", [
14
[1, ".u-m\\+ { a: b c d; }", ""]
15
]);
16
+ test("escaped selector (2)", ".grid.\\-top { a: b c d; }", [
17
+ [1, ".grid.\\-top { a: b c d; }", ""]
18
+ ]);
19
+ test("escaped selector (3)", ".u-m\\00002b { a: b c d; }", [
20
+ [1, ".u-m\\00002b { a: b c d; }", ""]
21
22
+ test("escaped characters", '.class { content: \'"\\\\f10c"\'; }', [
23
+ [1, '.class { content: \'"\\\\f10c"\'; }', ""]
24
25
+ test("escaped characters (2)", '.class { font-family: \'微软雅黑\'; }', [
26
+ [1, '.class { font-family: \'微软雅黑\'; }', ""]
27
28
+ test("escaped characters (3)", '.class { content: \'\\e901\'; }', [
29
+ [1, '.class { content: \'\\e901\'; }', ""]
30
31
test("escaped characters (uppercase)", '.class { content: "\\F10C" }', [
32
[1, '.class { content: "\\F10C" }', ""]
33
0 commit comments