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

Side by Side Diff: lib/src/prism/tests/languages/textile/image_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.png!
2 !bar.jpg(Foo bar)!
3 !foo.png!:http://prismjs.com
4 !bar.jpg(Foo bar)!:http://www.example.com
5
6 !<foo.png! !>bar.jpg!
7 !(foo)[en]{border:1px solid #ccc}foo.png!
8
9 ----------------------------------------------------
10
11 [
12 ["phrase", [
13 ["image", [
14 ["punctuation", "!"],
15 ["source", "foo.png"],
16 ["punctuation", "!"]
17 ]],
18 ["image", [
19 ["punctuation", "!"],
20 ["source", "bar.jpg(Foo bar)"],
21 ["punctuation", "!"]
22 ]],
23 ["image", [
24 ["punctuation", "!"],
25 ["source", "foo.png"],
26 ["punctuation", "!"],
27 ["punctuation", ":"],
28 ["url", "http://prismjs.com"]
29 ]],
30 ["image", [
31 ["punctuation", "!"],
32 ["source", "bar.jpg(Foo bar)"],
33 ["punctuation", "!"],
34 ["punctuation", ":"],
35 ["url", "http://www.example.com"]
36 ]]
37 ]],
38
39 ["phrase", [
40 ["image", [
41 ["punctuation", "!"],
42 ["modifier", [
43 ["punctuation", "<"]
44 ]],
45 ["source", "foo.png"],
46 ["punctuation", "!"]
47 ]],
48 ["image", [
49 ["punctuation", "!"],
50 ["modifier", [
51 ["punctuation", ">"]
52 ]],
53 ["source", "bar.jpg"],
54 ["punctuation", "!"]
55 ]],
56 ["image", [
57 ["punctuation", "!"],
58 ["modifier", [
59 ["punctuation", "("], ["class-id", "foo"], ["pun ctuation", ")"],
60 ["punctuation", "["], ["lang", "en"], ["punctuat ion", "]"],
61 ["css", ["{border:1px solid #ccc}"]]
62 ]],
63 ["source", "foo.png"],
64 ["punctuation", "!"]
65 ]]
66 ]]
67 ]
68
69 ----------------------------------------------------
70
71 Checks for images.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/textile/footnote_feature.test ('k') | lib/src/prism/tests/languages/textile/inline_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698