| Index: third_party/WebKit/LayoutTests/inspector/elements/styles-3/style-autocomplete.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles-3/style-autocomplete.html b/third_party/WebKit/LayoutTests/inspector/elements/styles-3/style-autocomplete.html
|
| index c45c7b9e04ee7bf660517c16189115909b0c7138..3bc42334c0e77bf3959f6d2fdc79ada1801ee37f 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/elements/styles-3/style-autocomplete.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/elements/styles-3/style-autocomplete.html
|
| @@ -6,13 +6,12 @@
|
|
|
| function test()
|
| {
|
| -
|
| - var namePrompt = new WebInspector.StylesSidebarPane.CSSPropertyPrompt(WebInspector.CSSMetadata.cssPropertiesMetainfo, null, true);
|
| + var namePrompt = new WebInspector.StylesSidebarPane.CSSPropertyPrompt(WebInspector.CSSMetadata.cssPropertiesMetainfo.allProperties(), null, true);
|
| var valuePrompt = valuePromptFor("color");
|
|
|
| function valuePromptFor(name)
|
| {
|
| - return new WebInspector.StylesSidebarPane.CSSPropertyPrompt(WebInspector.CSSMetadata.keywordsForProperty(name), null, false);
|
| + return new WebInspector.StylesSidebarPane.CSSPropertyPrompt(WebInspector.CSSMetadata.propertyValues(name), null, false);
|
| }
|
|
|
| InspectorTest.runTestSuite([
|
|
|