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

Side by Side Diff: lib/src/prism/tests/languages/textile/list_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
2 # bar
3 ## baz
4 #[fr](#foo){background:pink} Foobar
5
6 * foo
7 ** bar
8 *** baz
9
10 ----------------------------------------------------
11
12 [
13 ["phrase", [
14 ["list", [["punctuation", "#"], " foo"]],
15 ["list", [["punctuation", "#"], " bar"]],
16 ["list", [["punctuation", "##"], " baz"]],
17 ["list", [
18 ["punctuation", "#"],
19 ["modifier", [
20 ["punctuation", "["], ["lang", "fr"], ["punctuat ion", "]"],
21 ["punctuation", "("], ["class-id", "#foo"], ["pu nctuation", ")"],
22 ["css", ["{background:pink}"]]
23 ]],
24 " Foobar"
25 ]]
26 ]],
27 ["phrase", [
28 ["list", [["punctuation", "*"], " foo"]],
29 ["list", [["punctuation", "**"], " bar"]],
30 ["list", [["punctuation", "***"], " baz"]]
31 ]]
32 ]
33
34 ----------------------------------------------------
35
36 Checks for list items.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/textile/link_feature.test ('k') | lib/src/prism/tests/languages/textile/mark_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698