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

Side by Side Diff: lib/src/prism/tests/languages/textile/link_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 bar":http://prismjs.com
2 "Baz":foo
3 "Foobar":link-ref
4 "(foo)[en]{color:blue;}Foo":bar
5
6 ----------------------------------------------------
7
8 [
9 ["phrase", [
10 ["link", [
11 ["punctuation", "\""],
12 ["text", "Foo bar"],
13 ["punctuation", "\""], ["punctuation", ":"],
14 ["url", "http://prismjs.com"]
15 ]],
16 ["link", [
17 ["punctuation", "\""],
18 ["text", "Baz"],
19 ["punctuation", "\""], ["punctuation", ":"],
20 ["url", "foo"]
21 ]],
22 ["link", [
23 ["punctuation", "\""],
24 ["text", "Foobar"],
25 ["punctuation", "\""], ["punctuation", ":"],
26 ["url", "link-ref"]
27 ]],
28 ["link", [
29 ["punctuation", "\""],
30 ["modifier", [
31 ["punctuation", "("], ["class-id", "foo"], ["pun ctuation", ")"],
32 ["punctuation", "["], ["lang", "en"], ["punctuat ion", "]"],
33 ["css", ["{color:blue;}"]]
34 ]],
35 ["text", "Foo"],
36 ["punctuation", "\""], ["punctuation", ":"],
37 ["url", "bar"]
38 ]]
39 ]]
40 ]
41
42 ----------------------------------------------------
43
44 Checks for links.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/textile/link-ref_feature.test ('k') | lib/src/prism/tests/languages/textile/list_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698