Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / elements / styles-4 / supported-css-properties.html
blob31f010f24f95f28922609981e18e2b4168d91d27
1 <html>
2 <head>
3 <script type="text/javascript" src="../../../http/tests/inspector/inspector-test.js"></script>
4 <script>
5 function test()
7 var cssProperty = "box-shadow";
8 var properties = WebInspector.CSSMetadata.cssPropertiesMetainfo.startsWith(cssProperty);
9 if (properties.length)
10 InspectorTest.addResult(cssProperty + " is supported");
11 else
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();
18 </script>
19 </head>
20 <body onLoad="runTest();">
22 </body>
23 </html>