Skip to content

Commit 4e60cc9

Browse files
committed
Updated parser (fixes #234)
1 parent 40cc3c1 commit 4e60cc9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lib/parserlib.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
THE SOFTWARE.
2222
2323
*/
24-
/* Version v0.1.4, Build time: 31-January-2012 10:55:24 */
24+
/* Version v0.1.5, Build time: 10-February-2012 12:59:26 */
2525
var parserlib = {};
2626
(function(){
2727

@@ -931,7 +931,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
931931
THE SOFTWARE.
932932
933933
*/
934-
/* Version v0.1.4, Build time: 31-January-2012 10:55:24 */
934+
/* Version v0.1.5, Build time: 10-February-2012 12:59:26 */
935935
(function(){
936936
var EventTarget = parserlib.util.EventTarget,
937937
TokenStreamBase = parserlib.util.TokenStreamBase,
@@ -3599,6 +3599,7 @@ var Properties = {
35993599
"border-right-color" : "<color> | inherit",
36003600
"border-right-style" : "<border-style>",
36013601
"border-right-width" : "<border-width>",
3602+
"border-spacing" : { multi: "<length> | inherit", max: 2 },
36023603
"border-style" : { multi: "<border-style>", max: 4 },
36033604
"border-top" : "<border-width> || <border-style> || <color>",
36043605
"border-top-color" : "<color> | inherit",
@@ -5538,7 +5539,7 @@ var Tokens = [
55385539
//{ name: "ATKEYWORD"},
55395540

55405541
//CSS3 animations
5541-
{ name: "KEYFRAMES_SYM", text: [ "@keyframes", "@-webkit-keyframes", "@-moz-keyframes" ] },
5542+
{ name: "KEYFRAMES_SYM", text: [ "@keyframes", "@-webkit-keyframes", "@-moz-keyframes", "@-ms-keyframes" ] },
55425543

55435544
//important symbol
55445545
{ name: "IMPORTANT_SYM"},

0 commit comments

Comments
 (0)