Thanks to visit codestin.com Credit goes to github.com
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 0de16b9 commit 6744161Copy full SHA for 6744161
tokenizer/domjs.test
@@ -0,0 +1,14 @@
1
+{
2
+ "tests": [
3
+ {
4
+ "description":"CR in bogus comment state",
5
+ "input":"<?\u000d",
6
+ "output":["ParseError", ["Comment", "?\u000a"]]
7
+ },
8
9
+ "description":"CRLF in bogus comment state",
10
+ "input":"<?\u000d\u000a",
11
12
+ }
13
+ ]
14
+}
tree-construction/domjs.dat
@@ -0,0 +1,34 @@
+#data
+<svg><![CDATA[foo
+bar]]>
+#errors
+#document
+| <html>
+| <head>
+| <body>
+| <svg svg>
+| "foo
+bar"
+
+<svg><![CDATA[foobar]]>
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
0 commit comments