OLD | NEW |
| (Empty) |
1 <html> | |
2 <head> | |
3 <script type="text/javascript" src="../../../http/tests/inspector/inspector-test
.js"></script> | |
4 <script> | |
5 function test() | |
6 { | |
7 var cssProperty = "box-shadow"; | |
8 var properties = WebInspector.CSSMetadata.cssPropertiesMetainfo.startsWith(c
ssProperty); | |
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.longhan
ds("margin"); | |
14 marginLonghands.sort(); | |
15 InspectorTest.addResult("Margin longhands: " + marginLonghands.join(", ")); | |
16 InspectorTest.completeTest(); | |
17 } | |
18 </script> | |
19 </head> | |
20 <body onLoad="runTest();"> | |
21 | |
22 </body> | |
23 </html> | |
OLD | NEW |