| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script type="text/javascript" src="../../../http/tests/inspector/inspector-test
.js"></script> | 3 <script type="text/javascript" src="../../../http/tests/inspector/inspector-test
.js"></script> |
| 4 <script> | 4 <script> |
| 5 function test() | 5 function test() |
| 6 { | 6 { |
| 7 var marginLonghands = WebInspector.cssMetadata().longhands("margin"); | 7 var marginLonghands = SDK.cssMetadata().longhands("margin"); |
| 8 marginLonghands.sort(); | 8 marginLonghands.sort(); |
| 9 InspectorTest.addResult("Margin longhands: " + marginLonghands.join(", ")); | 9 InspectorTest.addResult("Margin longhands: " + marginLonghands.join(", ")); |
| 10 InspectorTest.completeTest(); | 10 InspectorTest.completeTest(); |
| 11 } | 11 } |
| 12 </script> | 12 </script> |
| 13 </head> | 13 </head> |
| 14 <body onLoad="runTest();"> | 14 <body onLoad="runTest();"> |
| 15 | 15 |
| 16 </body> | 16 </body> |
| 17 </html> | 17 </html> |
| OLD | NEW |