Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(558)

Unified Diff: LayoutTests/inspector/elements/styles/supported-css-properties.html

Issue 1158883003: DevTools: shard inspector/elements tests for faster execution. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698