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

Side by Side Diff: lib/src/prism/tests/languages/scss/keyword_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 @if @else if @else
2 @for @each @while
3 @import @extend
4 @debug @warn @mixin
5 @include @function
6 @return @content
7
8 @for $i from 1 through 3
9
10 ----------------------------------------------------
11
12 [
13 ["keyword", "@if"], ["keyword", "@else if"], ["keyword", "@else"],
14 ["keyword", "@for"], ["keyword", "@each"], ["keyword", "@while"],
15 ["keyword", "@import"], ["keyword", "@extend"],
16 ["keyword", "@debug"], ["keyword", "@warn"], ["keyword", "@mixin"],
17 ["keyword", "@include"], ["keyword", "@function"],
18 ["keyword", "@return"], ["keyword", "@content"],
19
20 ["keyword", "@for"],
21 ["variable", "$i"],
22 ["keyword", "from"],
23 " 1 ",
24 ["keyword", "through"],
25 " 3"
26 ]
27
28 ----------------------------------------------------
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/scss/comment_feature.test ('k') | lib/src/prism/tests/languages/scss/null_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698