-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge "Fix ParseError for comments after rule name or in
@keyframes
"
- Loading branch information
Showing
3 changed files
with
104 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/******************\ | ||
* * | ||
* Comment Header * | ||
* * | ||
\******************/ | ||
/* | ||
Comment | ||
*/ | ||
/* | ||
* Comment Test | ||
* | ||
* - cloudhead (http://cloudhead.net) | ||
* | ||
*/ | ||
/* Colors | ||
* ------ | ||
* #EDF8FC (background blue) | ||
* #166C89 (darkest blue) | ||
* | ||
* Text: | ||
* #333 (standard text) // A comment within a comment! | ||
* #1F9EC9 (standard link) | ||
* | ||
*/ | ||
/* @group Variables | ||
------------------- */ | ||
#comments, | ||
.comments { | ||
/**/ | ||
color: red; | ||
/* A C-style comment */ | ||
/* A C-style comment */ | ||
background-color: orange; | ||
font-size: 12px; | ||
/* lost comment */ | ||
content: "content"; | ||
border: 1px solid black; | ||
padding: 0; | ||
margin: 2em; | ||
} | ||
/* commented out | ||
#more-comments { | ||
color: grey; | ||
} | ||
*/ | ||
.selector, | ||
.lots, | ||
.comments { | ||
color: grey, /* blue */ orange; | ||
-webkit-border-radius: 2px /* webkit only */; | ||
-moz-border-radius: 8px /* moz only with operation */; | ||
} | ||
.test { | ||
color: 1px; | ||
} | ||
.sr-only-focusable { | ||
clip: auto; | ||
} | ||
@-webkit-keyframes hover { | ||
0% { | ||
color: red; | ||
} | ||
} | ||
#last { | ||
color: blue; | ||
} | ||
/* */ | ||
/* { */ | ||
/* */ | ||
/* */ | ||
/* */ | ||
#div { | ||
color: #A33; | ||
} | ||
/* } */ | ||
/*by block */ | ||
#output-block { | ||
comment: /* // Not commented out // */; | ||
} | ||
/*comment on last line*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters