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

Side by Side Diff: pkg/third_party/html5lib/test/data/tree-construction/webkit02.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 <foo bar=qux/>
3 #errors
4 #document
5 | <html>
6 | <head>
7 | <body>
8 | <foo>
9 | bar="qux/"
10
11 #data
12 <p id="status"><noscript><strong>A</strong></noscript><span>B</span></p>
13 #errors
14 #document
15 | <html>
16 | <head>
17 | <body>
18 | <p>
19 | id="status"
20 | <noscript>
21 | "<strong>A</strong>"
22 | <span>
23 | "B"
24
25 #data
26 <div><sarcasm><div></div></sarcasm></div>
27 #errors
28 #document
29 | <html>
30 | <head>
31 | <body>
32 | <div>
33 | <sarcasm>
34 | <div>
35
36 #data
37 <html><body><img src="" border="0" alt="><div>A</div></body></html>
38 #errors
39 #document
40 | <html>
41 | <head>
42 | <body>
43
44 #data
45 <table><td></tbody>A
46 #errors
47 #document
48 | <html>
49 | <head>
50 | <body>
51 | "A"
52 | <table>
53 | <tbody>
54 | <tr>
55 | <td>
56
57 #data
58 <table><td></thead>A
59 #errors
60 #document
61 | <html>
62 | <head>
63 | <body>
64 | <table>
65 | <tbody>
66 | <tr>
67 | <td>
68 | "A"
69
70 #data
71 <table><td></tfoot>A
72 #errors
73 #document
74 | <html>
75 | <head>
76 | <body>
77 | <table>
78 | <tbody>
79 | <tr>
80 | <td>
81 | "A"
82
83 #data
84 <table><thead><td></tbody>A
85 #errors
86 #document
87 | <html>
88 | <head>
89 | <body>
90 | <table>
91 | <thead>
92 | <tr>
93 | <td>
94 | "A"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698