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

Side by Side Diff: packages/html/test/data/tree-construction/adoption01.dat

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 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
OLDNEW
(Empty)
1 #data
2 <a><p></a></p>
3 #errors
4 #document
5 | <html>
6 | <head>
7 | <body>
8 | <a>
9 | <p>
10 | <a>
11
12 #data
13 <a>1<p>2</a>3</p>
14 #errors
15 #document
16 | <html>
17 | <head>
18 | <body>
19 | <a>
20 | "1"
21 | <p>
22 | <a>
23 | "2"
24 | "3"
25
26 #data
27 <a>1<button>2</a>3</button>
28 #errors
29 #document
30 | <html>
31 | <head>
32 | <body>
33 | <a>
34 | "1"
35 | <button>
36 | <a>
37 | "2"
38 | "3"
39
40 #data
41 <a>1<b>2</a>3</b>
42 #errors
43 #document
44 | <html>
45 | <head>
46 | <body>
47 | <a>
48 | "1"
49 | <b>
50 | "2"
51 | <b>
52 | "3"
53
54 #data
55 <a>1<div>2<div>3</a>4</div>5</div>
56 #errors
57 #document
58 | <html>
59 | <head>
60 | <body>
61 | <a>
62 | "1"
63 | <div>
64 | <a>
65 | "2"
66 | <div>
67 | <a>
68 | "3"
69 | "4"
70 | "5"
71
72 #data
73 <table><a>1<p>2</a>3</p>
74 #errors
75 #document
76 | <html>
77 | <head>
78 | <body>
79 | <a>
80 | "1"
81 | <p>
82 | <a>
83 | "2"
84 | "3"
85 | <table>
86
87 #data
88 <b><b><a><p></a>
89 #errors
90 #document
91 | <html>
92 | <head>
93 | <body>
94 | <b>
95 | <b>
96 | <a>
97 | <p>
98 | <a>
99
100 #data
101 <b><a><b><p></a>
102 #errors
103 #document
104 | <html>
105 | <head>
106 | <body>
107 | <b>
108 | <a>
109 | <b>
110 | <b>
111 | <p>
112 | <a>
113
114 #data
115 <a><b><b><p></a>
116 #errors
117 #document
118 | <html>
119 | <head>
120 | <body>
121 | <a>
122 | <b>
123 | <b>
124 | <b>
125 | <b>
126 | <p>
127 | <a>
128
129 #data
130 <p>1<s id="A">2<b id="B">3</p>4</s>5</b>
131 #errors
132 #document
133 | <html>
134 | <head>
135 | <body>
136 | <p>
137 | "1"
138 | <s>
139 | id="A"
140 | "2"
141 | <b>
142 | id="B"
143 | "3"
144 | <s>
145 | id="A"
146 | <b>
147 | id="B"
148 | "4"
149 | <b>
150 | id="B"
151 | "5"
152
153 #data
154 <table><a>1<td>2</td>3</table>
155 #errors
156 #document
157 | <html>
158 | <head>
159 | <body>
160 | <a>
161 | "1"
162 | <a>
163 | "3"
164 | <table>
165 | <tbody>
166 | <tr>
167 | <td>
168 | "2"
169
170 #data
171 <table>A<td>B</td>C</table>
172 #errors
173 #document
174 | <html>
175 | <head>
176 | <body>
177 | "AC"
178 | <table>
179 | <tbody>
180 | <tr>
181 | <td>
182 | "B"
183
184 #data
185 <a><svg><tr><input></a>
186 #errors
187 #document
188 | <html>
189 | <head>
190 | <body>
191 | <a>
192 | <svg svg>
193 | <svg tr>
194 | <svg input>
OLDNEW
« no previous file with comments | « packages/html/test/data/tokenizer/xmlViolation.test ('k') | packages/html/test/data/tree-construction/adoption02.dat » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698