You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Merge pull request #40 from nschonni/fix-#38-CSS2-system-colors (Nicholas C. Zakas)
10
+
* Add CSS2 system colors (Nick Schonning)
11
+
* Merge branch 'master' of github.com:nzakas/parser-lib (Nicholas C. Zakas)
12
+
* Fix readme (Nicholas C. Zakas)
13
+
* Merge pull request #35 from fracmak/calc_support (Nicholas C. Zakas)
14
+
* Add travis build status to readme (Nicholas C. Zakas)
15
+
* Fixed media query tests (Nicholas C. Zakas)
16
+
* Merge pull request #30 from mirceapiturca/master (Nicholas C. Zakas)
17
+
* Merge pull request #37 from Unroll-Me/master (Nicholas C. Zakas)
18
+
* Remove platform restrictions (Schabse Laks)
19
+
* _operator is used for seperating multiple values for a property (ie. box-shadow: 10px 10px 0, 2px 2px 0) as well as for mathematical operators inside functions. Since functions are the only place mathematical operators are allowed, we now pass in a boolean to distinguish which token is acceptable to not accidentally treat -10px -10px as an equation (Jay Merrifield)
20
+
* added support for + operator for calc functions (Merrifield, Jay)
21
+
* added support for calc wherever <length> is expected (Merrifield, Jay)
22
+
* Fixed YUI Test issues, bumped version (Nicholas C. Zakas)
23
+
* Merge pull request #36 from mattiacci/border-radius (Nicholas C. Zakas)
24
+
* Fix validation of border-radius (Michael Mattiacci)
25
+
* Merge pull request #33 from mattiacci/bg-position (Nicholas C. Zakas)
26
+
* Fix validation of background-position (Michael Mattiacci)
27
+
* Update tests/css/Parser.js (mirceapiturca)
28
+
* Merge pull request #31 from nightwing/master (Nicholas C. Zakas)
29
+
* fix typo (nightwing)
30
+
* Update src/css/MediaQuery.js (mirceapiturca)
31
+
* Update build/node-parserlib.js (mirceapiturca)
32
+
* v0.1.9 (Nicholas C. Zakas)
33
+
* Expose vendor prefix for @keyframes (fixes #29) (Nicholas C. Zakas)
34
+
* Add support for o-keyframes and remove ms-keyframes (Nicholas C. Zakas)
35
+
* Fix changelog (Nicholas C. Zakas)
36
+
37
+
1
38
November 13, 2012 - v0.2.0
2
39
3
40
* Merge pull request #36 from mattiacci/border-radius (Nicholas C. Zakas)
Copy file name to clipboardExpand all lines: release/node-parserlib.js
+50-14Lines changed: 50 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
21
THE SOFTWARE.
22
22
23
23
*/
24
-
/* Version v0.2.0, Build time: 13-November-2012 01:17:54 */
24
+
/* Version v0.2.1, Build time: 4-December-2012 11:58:48 */
25
25
varparserlib={};
26
26
(function(){
27
27
@@ -931,7 +931,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
931
931
THE SOFTWARE.
932
932
933
933
*/
934
-
/* Version v0.2.0, Build time: 13-November-2012 01:17:54 */
934
+
/* Version v0.2.1, Build time: 4-December-2012 11:58:48 */
935
935
(function(){
936
936
varEventTarget=parserlib.util.EventTarget,
937
937
TokenStreamBase=parserlib.util.TokenStreamBase,
@@ -1080,7 +1080,36 @@ var Colors = {
1080
1080
white :"#ffffff",
1081
1081
whitesmoke :"#f5f5f5",
1082
1082
yellow :"#ffff00",
1083
-
yellowgreen :"#9acd32"
1083
+
yellowgreen :"#9acd32",
1084
+
//CSS2 system colors http://www.w3.org/TR/css3-color/#css2-system
1085
+
activeBorder :"Active window border.",
1086
+
activecaption :"Active window caption.",
1087
+
appworkspace :"Background color of multiple document interface.",
1088
+
background :"Desktop background.",
1089
+
buttonface :"The face background color for 3-D elements that appear 3-D due to one layer of surrounding border.",
1090
+
buttonhighlight :"The color of the border facing the light source for 3-D elements that appear 3-D due to one layer of surrounding border.",
1091
+
buttonshadow :"The color of the border away from the light source for 3-D elements that appear 3-D due to one layer of surrounding border.",
1092
+
buttontext :"Text on push buttons.",
1093
+
captiontext :"Text in caption, size box, and scrollbar arrow box.",
1094
+
graytext :"Grayed (disabled) text. This color is set to #000 if the current display driver does not support a solid gray color.",
1095
+
highlight :"Item(s) selected in a control.",
1096
+
highlighttext :"Text of item(s) selected in a control.",
1097
+
inactiveborder :"Inactive window border.",
1098
+
inactivecaption :"Inactive window caption.",
1099
+
inactivecaptiontext :"Color of text in an inactive caption.",
1100
+
infobackground :"Background color for tooltip controls.",
1101
+
infotext :"Text color for tooltip controls.",
1102
+
menu :"Menu background.",
1103
+
menutext :"Text in menus.",
1104
+
scrollbar :"Scroll bar gray area.",
1105
+
threeddarkshadow :"The color of the darker (generally outer) of the two borders away from the light source for 3-D elements that appear 3-D due to two concentric layers of surrounding border.",
1106
+
threedface :"The face background color for 3-D elements that appear 3-D due to two concentric layers of surrounding border.",
1107
+
threedhighlight :"The color of the lighter (generally outer) of the two borders facing the light source for 3-D elements that appear 3-D due to two concentric layers of surrounding border.",
1108
+
threedlightshadow :"The color of the darker (generally inner) of the two borders facing the light source for 3-D elements that appear 3-D due to two concentric layers of surrounding border.",
1109
+
threedshadow :"The color of the lighter (generally inner) of the two borders away from the light source for 3-D elements that appear 3-D due to two concentric layers of surrounding border.",
0 commit comments