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

Side by Side Diff: lib/src/prism/tests/languages/stylus/func_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 border-radius(n)
2 -webkit-border-radius n
3 -moz-border-radius n
4 border-radius n
5
6 form input[type=button]
7 border-radius(5px)
8 color foo()
9
10 ----------------------------------------------------
11
12 [
13 ["func", [
14 ["function", "border-radius"],
15 ["punctuation", "("],
16 "n",
17 ["punctuation", ")"]
18 ]],
19 ["property-declaration", [
20 ["property", ["-webkit-border-radius"]],
21 " n"
22 ]],
23 ["property-declaration", [
24 ["property", ["-moz-border-radius"]],
25 " n"
26 ]],
27 ["property-declaration", [
28 ["property", ["border-radius"]],
29 " n"
30 ]],
31 ["selector", ["form input[type=button]"]],
32 ["func", [
33 ["function", "border-radius"],
34 ["punctuation", "("],
35 ["number", "5"],
36 "px",
37 ["punctuation", ")"]
38 ]],
39 ["property-declaration", [
40 ["property", ["color"]],
41 ["func", [
42 ["function", "foo"],
43 ["punctuation", "("],
44 ["punctuation", ")"]
45 ]]
46 ]]
47 ]
48
49 ----------------------------------------------------
50
51 Checks for functions.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/stylus/comment_feature.test ('k') | lib/src/prism/tests/languages/stylus/hexcode_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698