Closed
Bug 652014
Opened 14 years ago
Closed 14 years ago
Add diagnostic for nested at-rules so we give an error when @-moz-keyframes is inside @media
Categories
(Core :: CSS Parsing and Computation, defect, P3)
Core
CSS Parsing and Computation
Tracking
()
RESOLVED
FIXED
mozilla6
People
(Reporter: u382751, Assigned: dbaron)
References
()
Details
Attachments
(1 file)
2.16 KB,
patch
|
bzbarsky
:
review+
|
Details | Diff | Splinter Review |
User-Agent: Opera/9.80 (Macintosh; Intel Mac OS X 10.6.6; U; en) Presto/2.8.131 Version/11.50
Build Identifier: 5.0a2
When CSS animations are used outside of media queries they work, but fail when used within a media query
Reproducible: Always
Steps to Reproduce:
1. Click on the link
2. The loader should rotate like http://jsfiddle.net/nimbu/C3rt8/1/
3. Loader fails to rotate
Actual Results:
No animation
Expected Results:
The CSS animations get applied.
Updated•14 years ago
|
Component: General → Style System (CSS)
Product: Firefox → Core
QA Contact: general → style-system
Version: unspecified → 5 Branch
![]() |
||
Comment 1•14 years ago
|
||
CSS syntax does not allow nesting @-rules. So the @-moz-keyframes rule inside @media is ignored.
We should probably report an error to the error console in this situation instead of silently skipping the rule...
Version: 5 Branch → Trunk
Assignee | ||
Comment 2•14 years ago
|
||
I think I have a patch for the diagnostic, but the testcase seems to have been modified...
Assignee | ||
Comment 3•14 years ago
|
||
Oh, wait, the link in comment 0 is different from the one in the URL field.
Assignee | ||
Comment 4•14 years ago
|
||
Assignee: nobody → dbaron
Status: UNCONFIRMED → ASSIGNED
Ever confirmed: true
Attachment #527699 -
Flags: review?(bzbarsky)
Comment 5•14 years ago
|
||
Boris, that doesn't seem right. According to
<http://www.w3.org/TR/CSS21/syndata.html>, an @-rule can contain more @-rules:
The 'at-rule' construction produces a 'block'.
The 'block' construction can produce the at-rule construction (indirectly).
And section 4.1.5 doesn't appear to give any more specific contraindications.
Assignee | ||
Updated•14 years ago
|
Summary: CSS animations fail within media queries → Add diagnostic for nested at-rules so we give an error when @-moz-keyframes is inside @media
Assignee | ||
Comment 6•14 years ago
|
||
http://www.w3.org/TR/CSS21/grammar.html is very clear that @media rules contain only ruleset. http://www.w3.org/TR/CSS21/media.html#at-media-rule also says explicitly:
# At-rules inside @media are invalid in CSS2.1.
![]() |
||
Comment 7•14 years ago
|
||
Ah, indeed. The basic CSS2.1 grammar does not disallow nesting @-rules in theory, but it does disallow actually putting @-rules inside any @-rules CSS2.1 defines (that just being @media).
![]() |
||
Comment 8•14 years ago
|
||
Comment on attachment 527699 [details] [diff] [review]
add diagnostic
r=me
Attachment #527699 -
Flags: review?(bzbarsky) → review+
Assignee | ||
Comment 9•14 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 14 years ago
OS: Mac OS X → All
Priority: -- → P3
Hardware: x86 → All
Resolution: --- → FIXED
Target Milestone: --- → mozilla6
You need to log in
before you can comment on or make changes to this bug.
Description
•