| Index: third_party/WebKit/Source/devtools/front_end/sources/CSSSourceFrame.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/CSSSourceFrame.js b/third_party/WebKit/Source/devtools/front_end/sources/CSSSourceFrame.js
|
| index af853de702c031147ba23d87a2af25f9d818feb0..e1170ab1e71fb0cd4f56ecfd2cb439e9d6569e80 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/CSSSourceFrame.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/CSSSourceFrame.js
|
| @@ -358,7 +358,7 @@ WebInspector.CSSSourceFrame.AutocompleteDelegate.prototype = {
|
|
|
| var line = editor.line(prefixRange.startLine);
|
| var tokenContent = line.substring(propertyToken.startColumn, propertyToken.endColumn);
|
| - var keywords = WebInspector.CSSMetadata.keywordsForProperty(tokenContent);
|
| - return keywords.startsWith(prefix);
|
| + var propertyValues = WebInspector.CSSMetadata.propertyValues(tokenContent);
|
| + return propertyValues.filter(value => value.startsWith(prefix));
|
| },
|
| }
|
|
|