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 14602 - In transition-property: all, <property>, is <property> a duplicate ?
Summary: In transition-property: all, <property>, is <property> a duplicate ?
Status: RESOLVED FIXED
Alias: None
Product: CSS
Classification: Unclassified
Component: Transitions (show other bugs)
Version: unspecified
Hardware: PC All
: P2 normal
Target Milestone: ---
Assignee: Dean Jackson
QA Contact: This bug has no owner yet - up for the taking
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-10-30 22:30 UTC by Dean Jackson
Modified: 2012-02-17 01:04 UTC (History)
4 users (show)

See Also:


Attachments

Comment 1 Dean Jackson 2011-10-31 19:33:43 UTC
CSS meeting at TPAC 2011

Resolution:

- 'none' is not allowed in a list.
- 'all' is allowed, but will be used in place of everything in the list before it. For example:

transition-property: width, all, height;
transition-duration: 1s, 2s, 3s;

Ends up as 
every property including width -> 2s
height -> 3s
Comment 2 L. David Baron (Mozilla) 2012-02-17 00:47:47 UTC
Said resolution is documented in http://lists.w3.org/Archives/Public/www-style/2011Nov/0709.html
Comment 3 L. David Baron (Mozilla) 2012-02-17 01:04:05 UTC
Fixed in:
http://lists.w3.org/Archives/Public/public-css-commits/2012Feb/0141.html
per that resolution.