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

Side by Side Diff: lib/src/prism/tests/languages/wiki/nowiki_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 <nowiki>{{foo}} ''bar'' <baz></nowiki>
2 <source>{{foo}} ''bar'' <baz></source>
3 <pre>{{foo}} ''bar'' <baz></pre>
4
5 ----------------------------------------------------
6
7 [
8 ["nowiki", [
9 ["tag", [
10 ["tag", [
11 ["punctuation", "<"],
12 "nowiki"
13 ]],
14 ["punctuation", ">"]
15 ]],
16 "{{foo}} ''bar'' <baz>",
17 ["tag", [
18 ["tag", [
19 ["punctuation", "</"],
20 "nowiki"
21 ]],
22 ["punctuation", ">"]
23 ]]
24 ]],
25 ["nowiki", [
26 ["tag", [
27 ["tag", [
28 ["punctuation", "<"],
29 "source"
30 ]],
31 ["punctuation", ">"]
32 ]],
33 "{{foo}} ''bar'' <baz>",
34 ["tag", [
35 ["tag", [
36 ["punctuation", "</"],
37 "source"
38 ]],
39 ["punctuation", ">"]
40 ]]
41 ]],
42 ["nowiki", [
43 ["tag", [
44 ["tag", [
45 ["punctuation", "<"],
46 "pre"
47 ]],
48 ["punctuation", ">"]
49 ]],
50 "{{foo}} ''bar'' <baz>",
51 ["tag", [
52 ["tag", [
53 ["punctuation", "</"],
54 "pre"
55 ]],
56 ["punctuation", ">"]
57 ]]
58 ]]
59 ]
60
61 ----------------------------------------------------
62
63 Checks that no highlighting is done inside <nowiki>, <pre> and <source> tags.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/wiki/hr_feature.test ('k') | lib/src/prism/tests/languages/wiki/symbol_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698