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

Side by Side Diff: lib/src/prism/tests/languages/rest/link-target_feature.test

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 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
OLDNEW
(Empty)
1 .. [1] Foo
2 .. [2] Bar
3 .. [#] Baz
4 .. [#foobar] Foobar
5 .. [CIT2002] Foobar
6
7 .. _foobar: Foobar
8 .. _foo\:bar: Foobar
9 .. _`foo:bar`: Foobar
10 .. __: Anonymous
11
12 ----------------------------------------------------
13
14 [
15 ["punctuation", ".."],
16 ["link-target", [
17 ["punctuation", "["],
18 "1",
19 ["punctuation", "]"]
20 ]],
21 " Foo\r\n",
22
23 ["punctuation", ".."],
24 ["link-target", [
25 ["punctuation", "["],
26 "2",
27 ["punctuation", "]"]
28 ]],
29 " Bar\r\n",
30
31 ["punctuation", ".."],
32 ["link-target", [
33 ["punctuation", "["],
34 "#",
35 ["punctuation", "]"]
36 ]],
37 " Baz\r\n",
38
39 ["punctuation", ".."],
40 ["link-target", [
41 ["punctuation", "["],
42 "#foobar",
43 ["punctuation", "]"]
44 ]],
45 " Foobar\r\n",
46
47 ["punctuation", ".."],
48 ["link-target", [
49 ["punctuation", "["],
50 "CIT2002",
51 ["punctuation", "]"]
52 ]],
53 " Foobar\r\n\r\n",
54
55 ["punctuation", ".."],
56 ["link-target", [
57 ["punctuation", "_"],
58 "foobar",
59 ["punctuation", ":"]
60 ]],
61 " Foobar\r\n",
62
63 ["punctuation", ".."],
64 ["link-target", [
65 ["punctuation", "_"],
66 "foo\\:bar",
67 ["punctuation", ":"]
68 ]],
69 " Foobar\r\n",
70
71 ["punctuation", ".."],
72 ["link-target", [
73 ["punctuation", "_"],
74 "`foo:bar`",
75 ["punctuation", ":"]
76 ]],
77 " Foobar\r\n",
78
79 ["punctuation", ".."],
80 ["link-target", [
81 ["punctuation", "_"],
82 ["punctuation", "_"],
83 ["punctuation", ":"]
84 ]],
85 " Anonymous"
86 ]
87
88 ----------------------------------------------------
89
90 Checks for link targets.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/rest/inline_feature.test ('k') | lib/src/prism/tests/languages/rest/link_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698