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

Side by Side Diff: lib/src/prism/tests/languages/less+haml/less_inclusion.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 :less
2 .foo { .bar; }
3
4 ~
5 :less
6 .foo { .bar; }
7
8 ----------------------------------------------------
9
10 [
11 ["filter-less", [
12 ["filter-name", ":less"],
13 ["selector", [".foo"]],
14 ["punctuation", "{"],
15 ["mixin-usage", ".bar"],
16 ["punctuation", ";"],
17 ["punctuation", "}"]
18 ]],
19 ["punctuation", "~"],
20 ["filter-less", [
21 ["filter-name", ":less"],
22 ["selector", [".foo"]],
23 ["punctuation", "{"],
24 ["mixin-usage", ".bar"],
25 ["punctuation", ";"],
26 ["punctuation", "}"]
27 ]]
28 ]
29
30 ----------------------------------------------------
31
32 Checks for Less filter in Haml. The tilde serves only as a separator.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/latex/url_feature.test ('k') | lib/src/prism/tests/languages/less+jade/less_inclusion.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698