Blame view

bower_components/prism/tests/languages/stylus/func_feature.test 989 Bytes
eb240478   Luigi Serra   public room cards...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
  border-radius(n)

    -webkit-border-radius n

    -moz-border-radius n

    border-radius n

  

  form input[type=button]

    border-radius(5px)

    color foo()

  

  ----------------------------------------------------

  

  [

  	["func", [

  		["function", "border-radius"],

  		["punctuation", "("],

  		"n",

  		["punctuation", ")"]

  	]],

  	["property-declaration", [

  		["property", ["-webkit-border-radius"]],

  		" n"

  	]],

  	["property-declaration", [

  		["property", ["-moz-border-radius"]],

  		" n"

  	]],

  	["property-declaration", [

  		["property", ["border-radius"]],

  		" n"

  	]],

  	["selector", ["form input[type=button]"]],

  	["func", [

  		["function", "border-radius"],

  		["punctuation", "("],

  		["number", "5"],

  		"px",

  		["punctuation", ")"]

  	]],

  	["property-declaration", [

  		["property", ["color"]],

  		["func", [

  			["function", "foo"],

  			["punctuation", "("],

  			["punctuation", ")"]

  		]]

  	]]

  ]

  

  ----------------------------------------------------

  

  Checks for functions.