3 <script type=
"text/javascript" src=
"../../../http/tests/inspector/inspector-test.js"></script>
7 var cssProperty
= "box-shadow";
8 var properties
= WebInspector
.CSSMetadata
.cssPropertiesMetainfo
.startsWith(cssProperty
);
10 InspectorTest
.addResult(cssProperty
+ " is supported");
12 InspectorTest
.addResult(cssProperty
+ " is NOT supported");
13 var marginLonghands
= WebInspector
.CSSMetadata
.cssPropertiesMetainfo
.longhands("margin");
14 marginLonghands
.sort();
15 InspectorTest
.addResult("Margin longhands: " + marginLonghands
.join(", "));
16 InspectorTest
.completeTest();
20 <body onLoad=
"runTest();">