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

Side by Side Diff: sky/tests/parser/starttag.sky

Issue 685593006: This CL provides a bunch of new parser tests, and updates the (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « sky/tests/parser/script-expected.txt ('k') | sky/tests/parser/starttag-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <link rel="import" href="../resources/dump-as-markup.sky"></link>
3 <body>
4
5 <a>1</a>
6
7 <a >2</a >
8 <a.>3</a.>
9 <a_>4</a_>
10 <a->5</a->
11 <a!>6</a!>
12 <a%>7</a%>
13
14 < a>8</ a>
15 <.a>9</.a>
16 <_a>a</_a>
17 <-a>b</-a>
18 <!a>c</!a>
19 <%a>d</%a>
20
21 <a/_a></a>
22
23 <a foo=bar
24 </a></a>
25
26 <a a1
27 a2=
28 xx=xx
29
30 a3=&
31 a4=&#
32 a5=&#x
33 a6=&#x1
34 a7=&#x1;
35 a8=&#1
36 a9=&#1;
37 aa=&a
38 ab=&a;
39 ac=&;
40 ad=a
41 ae=&lt;
42 af=&lt
43 ag=&LT;
44
45 b3='&'
46 b4='&#'
47 b5='&#x'
48 b6='&#x1'
49 b7='&#x1;'
50 b8='&#1'
51 b9='&#1;'
52 ba='&a'
53 bb='&a;'
54 bc='&;'
55 bd='a'
56 be='&lt;'
57 bf='&lt'
58 bg='&LT;'
59
60 c3="&"
61 c4="&#"
62 c5="&#x"
63 c6="&#x1"
64 c7="&#x1;"
65 c8="&#1"
66 c9="&#1;"
67 ca="&a"
68 cb="&a;"
69 cc="&;"
70 cd="a"
71 ce="&lt;"
72 cf="&lt"
73 cg="&LT;"
74
75 >
76
77 </body>
OLDNEW
« no previous file with comments | « sky/tests/parser/script-expected.txt ('k') | sky/tests/parser/starttag-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698