riksoft opened a new issue, #8135:
URL: https://github.com/apache/netbeans/issues/8135
### Apache NetBeans version
Apache NetBeans 24
### What happened
In this CSS
```
@-webkit-keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
```
the line with 0% is marked with the warning "Unexpected token percentage
found"
No problem doing the same for @keyframes, so the problem is that it doesn't
recognise the -webkit- prefix.
### Language / Project Type / NetBeans Component
PHP project
### How to reproduce
Take/make a PHP project, add a css and write inside it
```
@-webkit-keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
```
### Did this work correctly in an earlier version?
No / Don't know
### Operating System
Debian 12
### JDK
OpenJDK 64-Bit Server VM 17.0.13+11-Debian-2deb12u1 Runtime: OpenJDK Runtime
Environment 17.0.13+11-Debian-2deb12u1
### Apache NetBeans packaging
Apache NetBeans binary zip
### Anything else
_No response_
### Are you willing to submit a pull request?
No
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists