| Summary: | [CSS][assist] We are missing some 'complex' property value proposals | ||
|---|---|---|---|
| Product: | [ECD] Orion | Reporter: | Curtis Windatt <curtis.windatt.public> |
| Component: | JS Tools | Assignee: | Curtis Windatt <curtis.windatt.public> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P2 | CC: | Michael_Rennie |
| Version: | 13.0 | ||
| Target Milestone: | 15.0 | ||
| Hardware: | PC | ||
| OS: | Windows 7 | ||
| Whiteboard: | |||
http://git.eclipse.org/c/orion/org.eclipse.orion.client.git/commit/?id=5262fb8e664b5e672ad90deeb6e6bd971d7c69cc Fixed in master with tests. |
abc { text-decoration-line: ; } For value proposals you will only get initial and inherit. The assist code is behaving as expected, it finds the csslint type <text-decoration-line> is a Matcher object, not a string we can parse for values. However, looking at csslint.js the Matcher object does have a list of values: "<text-decoration-line>": "none | [ underline || overline || line-through || blink ]", If we can find a way to extract this information from the Matcher object or elsewhere in csslint, we can provide assist for 'complex' values.