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 243944 - Foundation 5 - Many unknown properties
Summary: Foundation 5 - Many unknown properties
Status: RESOLVED FIXED
Alias: None
Product: web
Classification: Unclassified
Component: CSS Editor (show other bugs)
Version: 8.0
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: Milutin Kristofic
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-04-19 23:47 UTC by jolugaju
Modified: 2015-06-05 02:38 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 jolugaju 2014-04-19 23:47:20 UTC
I'm trying my first project with Foundation 5 and I have the following problem:
I added the CSS files and the Editor shows problems with these properties ...

transition: none 0 0 > Unexpected character "0" found
border: 1px solid none; > Unexpected character "none" found
text-rendering > Unknown property
touch-action > Unknown property
list-style: inherit; > Unexpected character "inherit"
moz-appearance: none; > Unexpected character "none"
background: linear-gradient(to bottom, white 0%, #f2f2f2 100%); > Unexpected character "linear-gradient"

Is this a bug?
Am I doing something wrong?

I'm a newbie with NetBeans, HTML, CSS, Foundation ...
And if that's not bad enough my English is far from perfect.

Thanks in advance!
Comment 1 Milutin Kristofic 2015-06-04 13:38:48 UTC
I fixed a few issues in http://hg.netbeans.org/web-main/rev/30dcba57efa4

Mainly:
background: linear-gradient(to bottom, white 0%, #f2f2f2 100%);
list-style: inherit;
-moz-appearance

There are some invalid properties in Foundation 5:

border-color: true;
-o-transition: translate3d(0, 0, 0);
border: 1px solid none; 
color cannot be none


And tags that are experimental and they are not in CSS specification. 
touch-action
user-select.

I create an enhancement for them. In Netbeans Hints and Completion for CSS is tight together and if I make properties valid for hints, they will be in completion, but without documentation (since they are not in CSS specification) We need some new way to incorporate such experimental and non-standard properties. I created for it issue Bug #252804
Comment 2 Quality Engineering 2015-06-05 02:38:25 UTC
Integrated into 'main-silver', will be available in build *201506050001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)

Changeset: http://hg.netbeans.org/main-silver/rev/30dcba57efa4
User: Milutin Kristofic <mkristofic@netbeans.org>
Log: #243944 - Foundation 5 - Many unknown properties