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

Side by Side Diff: lib/src/prism/tests/languages/markup+php/markup_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 <div class="foo"></div>
2
3 ----------------------------------------------------
4
5 [
6 ["markup", [
7 ["tag", [
8 ["tag", [
9 ["punctuation", "<"],
10 "div"
11 ]],
12 ["attr-name", [
13 "class"
14 ]],
15 ["attr-value", [
16 ["punctuation", "="],
17 ["punctuation", "\""],
18 "foo",
19 ["punctuation", "\""]
20 ]],
21 ["punctuation", ">"]
22 ]]
23 ]],
24 ["markup", [
25 ["tag", [
26 ["tag", [
27 ["punctuation", "</"],
28 "div"
29 ]],
30 ["punctuation", ">"]
31 ]]
32 ]]
33 ]
34
35 ----------------------------------------------------
36
37 Checks for markup in PHP.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698