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

Side by Side Diff: pkg/third_party/html5lib/test/data/tree-construction/comments01.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 -->BAZ
3 #errors
4 #document
5 | <html>
6 | <head>
7 | <body>
8 | "FOO"
9 | <!-- BAR -->
10 | "BAZ"
11
12 #data
13 FOO<!-- BAR --!>BAZ
14 #errors
15 #document
16 | <html>
17 | <head>
18 | <body>
19 | "FOO"
20 | <!-- BAR -->
21 | "BAZ"
22
23 #data
24 FOO<!-- BAR -- >BAZ
25 #errors
26 #document
27 | <html>
28 | <head>
29 | <body>
30 | "FOO"
31 | <!-- BAR -- >BAZ -->
32
33 #data
34 FOO<!-- BAR -- <QUX> -- MUX -->BAZ
35 #errors
36 #document
37 | <html>
38 | <head>
39 | <body>
40 | "FOO"
41 | <!-- BAR -- <QUX> -- MUX -->
42 | "BAZ"
43
44 #data
45 FOO<!-- BAR -- <QUX> -- MUX --!>BAZ
46 #errors
47 #document
48 | <html>
49 | <head>
50 | <body>
51 | "FOO"
52 | <!-- BAR -- <QUX> -- MUX -->
53 | "BAZ"
54
55 #data
56 FOO<!-- BAR -- <QUX> -- MUX -- >BAZ
57 #errors
58 #document
59 | <html>
60 | <head>
61 | <body>
62 | "FOO"
63 | <!-- BAR -- <QUX> -- MUX -- >BAZ -->
64
65 #data
66 FOO<!---->BAZ
67 #errors
68 #document
69 | <html>
70 | <head>
71 | <body>
72 | "FOO"
73 | <!-- -->
74 | "BAZ"
75
76 #data
77 FOO<!--->BAZ
78 #errors
79 #document
80 | <html>
81 | <head>
82 | <body>
83 | "FOO"
84 | <!-- -->
85 | "BAZ"
86
87 #data
88 FOO<!-->BAZ
89 #errors
90 #document
91 | <html>
92 | <head>
93 | <body>
94 | "FOO"
95 | <!-- -->
96 | "BAZ"
97
98 #data
99 <?xml version="1.0">Hi
100 #errors
101 #document
102 | <!-- ?xml version="1.0" -->
103 | <html>
104 | <head>
105 | <body>
106 | "Hi"
107
108 #data
109 <?xml version="1.0">
110 #errors
111 #document
112 | <!-- ?xml version="1.0" -->
113 | <html>
114 | <head>
115 | <body>
116
117 #data
118 <?xml version
119 #errors
120 #document
121 | <!-- ?xml version -->
122 | <html>
123 | <head>
124 | <body>
125
126 #data
127 FOO<!----->BAZ
128 #errors
129 #document
130 | <html>
131 | <head>
132 | <body>
133 | "FOO"
134 | <!-- - -->
135 | "BAZ"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698