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

Side by Side Diff: pkg/third_party/html5lib/test/data/tree-construction/html5test-com.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 <div<div>
3 #errors
4 #document
5 | <html>
6 | <head>
7 | <body>
8 | <div<div>
9
10 #data
11 <div foo<bar=''>
12 #errors
13 #document
14 | <html>
15 | <head>
16 | <body>
17 | <div>
18 | foo<bar=""
19
20 #data
21 <div foo=`bar`>
22 #errors
23 #document
24 | <html>
25 | <head>
26 | <body>
27 | <div>
28 | foo="`bar`"
29
30 #data
31 <div \"foo=''>
32 #errors
33 #document
34 | <html>
35 | <head>
36 | <body>
37 | <div>
38 | \"foo=""
39
40 #data
41 <a href='\nbar'></a>
42 #errors
43 #document
44 | <html>
45 | <head>
46 | <body>
47 | <a>
48 | href="\nbar"
49
50 #data
51 <!DOCTYPE html>
52 #errors
53 #document
54 | <!DOCTYPE html>
55 | <html>
56 | <head>
57 | <body>
58
59 #data
60 &lang;&rang;
61 #errors
62 #document
63 | <html>
64 | <head>
65 | <body>
66 | "⟨⟩"
67
68 #data
69 &apos;
70 #errors
71 #document
72 | <html>
73 | <head>
74 | <body>
75 | "'"
76
77 #data
78 &ImaginaryI;
79 #errors
80 #document
81 | <html>
82 | <head>
83 | <body>
84 | "ⅈ"
85
86 #data
87 &Kopf;
88 #errors
89 #document
90 | <html>
91 | <head>
92 | <body>
93 | "𝕂"
94
95 #data
96 &notinva;
97 #errors
98 #document
99 | <html>
100 | <head>
101 | <body>
102 | "∉"
103
104 #data
105 <?import namespace="foo" implementation="#bar">
106 #errors
107 #document
108 | <!-- ?import namespace="foo" implementation="#bar" -->
109 | <html>
110 | <head>
111 | <body>
112
113 #data
114 <!--foo--bar-->
115 #errors
116 #document
117 | <!-- foo--bar -->
118 | <html>
119 | <head>
120 | <body>
121
122 #data
123 <![CDATA[x]]>
124 #errors
125 #document
126 | <!-- [CDATA[x]] -->
127 | <html>
128 | <head>
129 | <body>
130
131 #data
132 <textarea><!--</textarea>--></textarea>
133 #errors
134 #document
135 | <html>
136 | <head>
137 | <body>
138 | <textarea>
139 | "<!--"
140 | "-->"
141
142 #data
143 <textarea><!--</textarea>-->
144 #errors
145 #document
146 | <html>
147 | <head>
148 | <body>
149 | <textarea>
150 | "<!--"
151 | "-->"
152
153 #data
154 <style><!--</style>--></style>
155 #errors
156 #document
157 | <html>
158 | <head>
159 | <style>
160 | "<!--"
161 | <body>
162 | "-->"
163
164 #data
165 <style><!--</style>-->
166 #errors
167 #document
168 | <html>
169 | <head>
170 | <style>
171 | "<!--"
172 | <body>
173 | "-->"
174
175 #data
176 <ul><li>A </li> <li>B</li></ul>
177 #errors
178 #document
179 | <html>
180 | <head>
181 | <body>
182 | <ul>
183 | <li>
184 | "A "
185 | " "
186 | <li>
187 | "B"
188
189 #data
190 <table><form><input type=hidden><input></form><div></div></table>
191 #errors
192 #document
193 | <html>
194 | <head>
195 | <body>
196 | <input>
197 | <div>
198 | <table>
199 | <form>
200 | <input>
201 | type="hidden"
202
203 #data
204 <i>A<b>B<p></i>C</b>D
205 #errors
206 #document
207 | <html>
208 | <head>
209 | <body>
210 | <i>
211 | "A"
212 | <b>
213 | "B"
214 | <b>
215 | <p>
216 | <b>
217 | <i>
218 | "C"
219 | "D"
220
221 #data
222 <div></div>
223 #errors
224 #document
225 | <html>
226 | <head>
227 | <body>
228 | <div>
229
230 #data
231 <svg></svg>
232 #errors
233 #document
234 | <html>
235 | <head>
236 | <body>
237 | <svg svg>
238
239 #data
240 <math></math>
241 #errors
242 #document
243 | <html>
244 | <head>
245 | <body>
246 | <math math>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698