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

Side by Side Diff: pkg/third_party/html5lib/test/data/tree-construction/tests14.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 <!DOCTYPE html><html><body><xyz:abc></xyz:abc>
3 #errors
4 #document
5 | <!DOCTYPE html>
6 | <html>
7 | <head>
8 | <body>
9 | <xyz:abc>
10
11 #data
12 <!DOCTYPE html><html><body><xyz:abc></xyz:abc><span></span>
13 #errors
14 #document
15 | <!DOCTYPE html>
16 | <html>
17 | <head>
18 | <body>
19 | <xyz:abc>
20 | <span>
21
22 #data
23 <!DOCTYPE html><html><html abc:def=gh><xyz:abc></xyz:abc>
24 #errors
25 15: Unexpected start tag html
26 #document
27 | <!DOCTYPE html>
28 | <html>
29 | abc:def="gh"
30 | <head>
31 | <body>
32 | <xyz:abc>
33
34 #data
35 <!DOCTYPE html><html xml:lang=bar><html xml:lang=foo>
36 #errors
37 15: Unexpected start tag html
38 #document
39 | <!DOCTYPE html>
40 | <html>
41 | xml:lang="bar"
42 | <head>
43 | <body>
44
45 #data
46 <!DOCTYPE html><html 123=456>
47 #errors
48 #document
49 | <!DOCTYPE html>
50 | <html>
51 | 123="456"
52 | <head>
53 | <body>
54
55 #data
56 <!DOCTYPE html><html 123=456><html 789=012>
57 #errors
58 #document
59 | <!DOCTYPE html>
60 | <html>
61 | 123="456"
62 | 789="012"
63 | <head>
64 | <body>
65
66 #data
67 <!DOCTYPE html><html><body 789=012>
68 #errors
69 #document
70 | <!DOCTYPE html>
71 | <html>
72 | <head>
73 | <body>
74 | 789="012"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698