This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 14782 - Case-sensisitivity of keyframes at-rule
Summary: Case-sensisitivity of keyframes at-rule
Status: RESOLVED FIXED
Alias: None
Product: CSS
Classification: Unclassified
Component: Animations (show other bugs)
Version: unspecified
Hardware: PC All
: P2 normal
Target Milestone: ---
Assignee: Sylvain Galineau
QA Contact: This bug has no owner yet - up for the taking
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-11-11 19:20 UTC by Sylvain Galineau
Modified: 2011-12-17 02:22 UTC (History)
3 users (show)

See Also:


Attachments

Comment 1 Sylvain Galineau 2011-12-17 02:21:16 UTC
Updated the grammar definition to

keyframes-rule: KEYFRAMES_SYM S* IDENT '{' keyframes-blocks '}' S*;

        keyframes-blocks: [ S* keyframe-selector '{' S* declaration? [ ';' S* declaration? ]* '}' ]* ;

        keyframe-selector: [ FROM_SYM | TO_SYM | PERCENTAGE ] [ ',' [ FROM_SYM | TO_SYM | PERCENTAGE ] ]*;
		
        @{K}{E}{Y}{F}{R}{A}{M}{E}{S}   {return KEYFRAMES_SYM;}
        {F}{R}{O}{M}                   {return FROM_SYM;}
        {T}{O}                         {return TO_SYM;}