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

Side by Side Diff: lib/src/prism/tests/languages/rest/substitution-def_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 .. |biohazard| image:: biohazard.png
2 .. |Red light| image:: red_light.png
3
4 .. |Michael| user:: mjones
5 .. |Jon| user:: jhl
6
7 ----------------------------------------------------
8
9 [
10 ["punctuation", ".."],
11 ["substitution-def", [
12 ["substitution", [
13 ["punctuation", "|"],
14 "biohazard",
15 ["punctuation", "|"]
16 ]],
17 ["directive", [
18 "image",
19 ["punctuation", "::"]
20 ]]
21 ]],
22 " biohazard.png\r\n",
23
24 ["punctuation", ".."],
25 ["substitution-def", [
26 ["substitution", [
27 ["punctuation", "|"],
28 "Red light",
29 ["punctuation", "|"]
30 ]],
31 ["directive", [
32 "image",
33 ["punctuation", "::"]
34 ]]
35 ]],
36 " red_light.png\r\n\r\n",
37
38 ["punctuation", ".."],
39 ["substitution-def", [
40 ["substitution", [
41 ["punctuation", "|"],
42 "Michael",
43 ["punctuation", "|"]
44 ]],
45 ["directive", [
46 "user",
47 ["punctuation", "::"]
48 ]]
49 ]],
50 " mjones\r\n",
51
52 ["punctuation", ".."],
53 ["substitution-def", [
54 ["substitution", [
55 ["punctuation", "|"],
56 "Jon",
57 ["punctuation", "|"]
58 ]],
59 ["directive", [
60 "user",
61 ["punctuation", "::"]
62 ]]
63 ]],
64 " jhl"
65 ]
66
67 ----------------------------------------------------
68
69 Checks for substitution definitions.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698