| Index: third_party/WebKit/LayoutTests/inspector/elements/styles-4/supported-css-properties.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles-4/supported-css-properties.html b/third_party/WebKit/LayoutTests/inspector/elements/styles-4/supported-css-properties.html
|
| index 31f010f24f95f28922609981e18e2b4168d91d27..5d0bb643ba8d052311c83e1a9153165cd961e10c 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/elements/styles-4/supported-css-properties.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/elements/styles-4/supported-css-properties.html
|
| @@ -5,8 +5,7 @@
|
| function test()
|
| {
|
| var cssProperty = "box-shadow";
|
| - var properties = WebInspector.CSSMetadata.cssPropertiesMetainfo.startsWith(cssProperty);
|
| - if (properties.length)
|
| + if (WebInspector.CSSMetadata.cssPropertiesMetainfo.hasProperty(cssProperty))
|
| InspectorTest.addResult(cssProperty + " is supported");
|
| else
|
| InspectorTest.addResult(cssProperty + " is NOT supported");
|
|
|