mirror of
https://github.com/sjsdfg/effective-java-3rd-chinese.git
synced 2025-02-19 07:50:13 +08:00
31 lines
763 B
Plaintext
31 lines
763 B
Plaintext
|
@media print
|
||
|
@import "reset.css"
|
||
|
@font-face {
|
||
|
@keyframes {
|
||
|
@media (max-{foo}: bar)
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
[
|
||
|
["atrule-declaration", [["atrule", "@media"], " print"]],
|
||
|
["atrule-declaration", [["atrule", "@import"], ["string", "\"reset.css\""]]],
|
||
|
["atrule-declaration", [["atrule", "@font-face"], ["punctuation", "{"]]],
|
||
|
["atrule-declaration", [["atrule", "@keyframes"], ["punctuation", "{"]]],
|
||
|
["atrule-declaration", [
|
||
|
["atrule", "@media"],
|
||
|
["punctuation", "("],
|
||
|
"max-",
|
||
|
["interpolation", [
|
||
|
["delimiter", "{"],
|
||
|
"foo",
|
||
|
["delimiter", "}"]
|
||
|
]],
|
||
|
["punctuation", ":"],
|
||
|
" bar",
|
||
|
["punctuation", ")"]
|
||
|
]]
|
||
|
]
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
Checks for at-rules.
|