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

Side by Side Diff: lib/src/prism/tests/languages/stylus/atrule-declaration_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 @media print
2 @import "reset.css"
3 @font-face {
4 @keyframes {
5 @media (max-{foo}: bar)
6
7 ----------------------------------------------------
8
9 [
10 ["atrule-declaration", [["atrule", "@media"], " print"]],
11 ["atrule-declaration", [["atrule", "@import"], ["string", "\"reset.css\" "]]],
12 ["atrule-declaration", [["atrule", "@font-face"], ["punctuation", "{"]]] ,
13 ["atrule-declaration", [["atrule", "@keyframes"], ["punctuation", "{"]]] ,
14 ["atrule-declaration", [
15 ["atrule", "@media"],
16 ["punctuation", "("],
17 "max-",
18 ["interpolation", [
19 ["punctuation", "{"],
20 "foo",
21 ["punctuation", "}"]
22 ]],
23 ["punctuation", ":"],
24 " bar",
25 ["punctuation", ")"]
26 ]]
27 ]
28
29 ----------------------------------------------------
30
31 Checks for at-rules.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698