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

Side by Side Diff: lib/src/prism/tests/languages/markdown/url-reference_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 [foo]: http://prismjs.com
2 [foo]: http://prismjs.com "foo\"bar"
3 [foo]: http://prismjs.com 'foo\'bar'
4 ![foo]: http://prismjs.com (foo (bar\) baz)
5 [foo]: <http://prismjs.com> "Prism"
6
7 ----------------------------------------------------
8
9 [
10 ["url-reference", [
11 ["punctuation", "["],
12 ["variable", "foo"],
13 ["punctuation", "]"],
14 ["punctuation", ":"],
15 " http://prismjs.com"
16 ]],
17 ["url-reference", [
18 ["punctuation", "["],
19 ["variable", "foo"],
20 ["punctuation", "]"],
21 ["punctuation", ":"],
22 " http://prismjs.com ",
23 ["string", "\"foo\\\"bar\""]
24 ]],
25 ["url-reference", [
26 ["punctuation", "["],
27 ["variable", "foo"],
28 ["punctuation", "]"],
29 ["punctuation", ":"],
30 " http://prismjs.com ",
31 ["string", "'foo\\'bar'"]
32 ]],
33 ["url-reference", [
34 ["punctuation", "!"],
35 ["punctuation", "["],
36 ["variable", "foo"],
37 ["punctuation", "]"],
38 ["punctuation", ":"],
39 " http://prismjs.com ",
40 ["string", "(foo (bar\\) baz)"]
41 ]],
42 ["url-reference", [
43 ["punctuation", "["],
44 ["variable", "foo"],
45 ["punctuation", "]"],
46 ["punctuation", ":"],
47 ["punctuation", "<"],
48 "http://prismjs.com",
49 ["punctuation", ">"],
50 ["string", "\"Prism\""]
51 ]]
52 ]
53
54 ----------------------------------------------------
55
56 Checks for URL references.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/markdown/title_feature.test ('k') | lib/src/prism/tests/languages/markdown/url_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698