Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(690)

Side by Side Diff: pkg/third_party/html5lib/test/data/tree-construction/tests21.dat

Issue 22375011: move html5lib code into dart svn repo (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: change location of html5lib to pkg/third_party/html5lib Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #data
2 <svg><![CDATA[foo]]>
3 #errors
4 #document
5 | <html>
6 | <head>
7 | <body>
8 | <svg svg>
9 | "foo"
10
11 #data
12 <math><![CDATA[foo]]>
13 #errors
14 #document
15 | <html>
16 | <head>
17 | <body>
18 | <math math>
19 | "foo"
20
21 #data
22 <div><![CDATA[foo]]>
23 #errors
24 #document
25 | <html>
26 | <head>
27 | <body>
28 | <div>
29 | <!-- [CDATA[foo]] -->
30
31 #data
32 <svg><![CDATA[foo
33 #errors
34 #document
35 | <html>
36 | <head>
37 | <body>
38 | <svg svg>
39 | "foo"
40
41 #data
42 <svg><![CDATA[foo
43 #errors
44 #document
45 | <html>
46 | <head>
47 | <body>
48 | <svg svg>
49 | "foo"
50
51 #data
52 <svg><![CDATA[
53 #errors
54 #document
55 | <html>
56 | <head>
57 | <body>
58 | <svg svg>
59
60 #data
61 <svg><![CDATA[]]>
62 #errors
63 #document
64 | <html>
65 | <head>
66 | <body>
67 | <svg svg>
68
69 #data
70 <svg><![CDATA[]] >]]>
71 #errors
72 #document
73 | <html>
74 | <head>
75 | <body>
76 | <svg svg>
77 | "]] >"
78
79 #data
80 <svg><![CDATA[]] >]]>
81 #errors
82 #document
83 | <html>
84 | <head>
85 | <body>
86 | <svg svg>
87 | "]] >"
88
89 #data
90 <svg><![CDATA[]]
91 #errors
92 #document
93 | <html>
94 | <head>
95 | <body>
96 | <svg svg>
97 | "]]"
98
99 #data
100 <svg><![CDATA[]
101 #errors
102 #document
103 | <html>
104 | <head>
105 | <body>
106 | <svg svg>
107 | "]"
108
109 #data
110 <svg><![CDATA[]>a
111 #errors
112 #document
113 | <html>
114 | <head>
115 | <body>
116 | <svg svg>
117 | "]>a"
118
119 #data
120 <svg><foreignObject><div><![CDATA[foo]]>
121 #errors
122 #document
123 | <html>
124 | <head>
125 | <body>
126 | <svg svg>
127 | <svg foreignObject>
128 | <div>
129 | <!-- [CDATA[foo]] -->
130
131 #data
132 <svg><![CDATA[<svg>]]>
133 #errors
134 #document
135 | <html>
136 | <head>
137 | <body>
138 | <svg svg>
139 | "<svg>"
140
141 #data
142 <svg><![CDATA[</svg>a]]>
143 #errors
144 #document
145 | <html>
146 | <head>
147 | <body>
148 | <svg svg>
149 | "</svg>a"
150
151 #data
152 <svg><![CDATA[<svg>a
153 #errors
154 #document
155 | <html>
156 | <head>
157 | <body>
158 | <svg svg>
159 | "<svg>a"
160
161 #data
162 <svg><![CDATA[</svg>a
163 #errors
164 #document
165 | <html>
166 | <head>
167 | <body>
168 | <svg svg>
169 | "</svg>a"
170
171 #data
172 <svg><![CDATA[<svg>]]><path>
173 #errors
174 #document
175 | <html>
176 | <head>
177 | <body>
178 | <svg svg>
179 | "<svg>"
180 | <svg path>
181
182 #data
183 <svg><![CDATA[<svg>]]></path>
184 #errors
185 #document
186 | <html>
187 | <head>
188 | <body>
189 | <svg svg>
190 | "<svg>"
191
192 #data
193 <svg><![CDATA[<svg>]]><!--path-->
194 #errors
195 #document
196 | <html>
197 | <head>
198 | <body>
199 | <svg svg>
200 | "<svg>"
201 | <!-- path -->
202
203 #data
204 <svg><![CDATA[<svg>]]>path
205 #errors
206 #document
207 | <html>
208 | <head>
209 | <body>
210 | <svg svg>
211 | "<svg>path"
212
213 #data
214 <svg><![CDATA[<!--svg-->]]>
215 #errors
216 #document
217 | <html>
218 | <head>
219 | <body>
220 | <svg svg>
221 | "<!--svg-->"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698