Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 514143

Summary: [CSS][assist] We are missing some 'complex' property value proposals
Product: [ECD] Orion Reporter: Curtis Windatt <curtis.windatt.public>
Component: JS ToolsAssignee: 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:

Description Curtis Windatt CLA 2017-03-23 16:32:50 EDT
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.