Index: LayoutTests/inspector/elements/styles/supported-css-properties.html |
diff --git a/LayoutTests/inspector/elements/styles/supported-css-properties.html b/LayoutTests/inspector/elements/styles/supported-css-properties.html |
deleted file mode 100644 |
index 31f010f24f95f28922609981e18e2b4168d91d27..0000000000000000000000000000000000000000 |
--- a/LayoutTests/inspector/elements/styles/supported-css-properties.html |
+++ /dev/null |
@@ -1,23 +0,0 @@ |
-<html> |
-<head> |
-<script type="text/javascript" src="../../../http/tests/inspector/inspector-test.js"></script> |
-<script> |
-function test() |
-{ |
- var cssProperty = "box-shadow"; |
- var properties = WebInspector.CSSMetadata.cssPropertiesMetainfo.startsWith(cssProperty); |
- if (properties.length) |
- InspectorTest.addResult(cssProperty + " is supported"); |
- else |
- InspectorTest.addResult(cssProperty + " is NOT supported"); |
- var marginLonghands = WebInspector.CSSMetadata.cssPropertiesMetainfo.longhands("margin"); |
- marginLonghands.sort(); |
- InspectorTest.addResult("Margin longhands: " + marginLonghands.join(", ")); |
- InspectorTest.completeTest(); |
-} |
-</script> |
-</head> |
-<body onLoad="runTest();"> |
- |
-</body> |
-</html> |