jellyfin-web/dashboard-ui/bower_components/prism/tests/languages/stylus/property-declaration_feature.test
2016-02-03 18:00:01 -05:00

52 lines
1010 B
Plaintext

div
width 40px
color: red
background: blue;
div {
background-{foo}: bar;
}
div
{foo} bar
----------------------------------------------------
[
["selector", ["div"]],
["property-declaration", [
["property", ["width"]], ["number", "40"], "px"
]],
["property-declaration", [
["property", ["color"]], ["punctuation", ":"], " red"
]],
["property-declaration", [
["property", ["background"]], ["punctuation", ":"], " blue", ["punctuation", ";"]
]],
["selector", ["div ", ["punctuation", "{"]]],
["property-declaration", [
["property", [
"background-",
["interpolation", [
["punctuation", "{"], "foo", ["punctuation", "}"]
]]
]],
["punctuation", ":"],
" bar",
["punctuation", ";"]
]],
["punctuation", "}"],
["selector", ["div"]],
["property-declaration", [
["property", [
["interpolation", [
["punctuation", "{"], "foo", ["punctuation", "}"]
]]
]],
" bar"
]]
]
----------------------------------------------------
Checks for property declarations.