This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 223845 - transition css property false alarm
Summary: transition css property false alarm
Status: RESOLVED INVALID
Alias: None
Product: web
Classification: Unclassified
Component: CSS Editor (show other bugs)
Version: 7.3
Hardware: PC Mac OS X
: P3 normal (vote)
Assignee: Milutin Kristofic
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-12-14 13:50 UTC by Marek Fukala
Modified: 2015-06-15 15:32 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Marek Fukala 2012-12-14 13:50:02 UTC
div { transition: 0.6s ease-in-out left; }

"left" token is marked as erroneous while the whole property value is correct. Seems to be an infrastructure (GrammarResolver) flaw.
Comment 1 Milutin Kristofic 2015-06-15 15:32:12 UTC
According to grammar definition http://www.w3.org/TR/css3-transitions/#transition you should separate transition properties with comma. 

I think your example should be
div { transition: 0.6s ease-in-out, left; }


You can correct me, if I made mistake.