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

Unified Diff: LayoutTests/inspector/elements/styles/filter-matched-styles.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/filter-matched-styles.html
diff --git a/LayoutTests/inspector/elements/styles/filter-matched-styles.html b/LayoutTests/inspector/elements/styles/filter-matched-styles.html
deleted file mode 100644
index 7ce5e5429222ed48650a67a76a75f07864c5c536..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/elements/styles/filter-matched-styles.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<html>
-<head>
-<script src="../../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../../http/tests/inspector/elements-test.js"></script>
-<style>
-.mydiv {
- border: 1px solid black;
- padding: 10px 10px 10px 10px;
-}
-
-#inspected {
- border-size: 2px;
-}
-
-</style>
-<script>
-function test()
-{
- InspectorTest.runTestSuite([
- function selectInitialNode(next)
- {
- InspectorTest.selectNodeAndWaitForStyles("inspected", next);
- },
-
- function testSimpleFiltering(next)
- {
- InspectorTest.filterMatchedStyles("padding");
- InspectorTest.dumpRenderedMatchedStyles();
- next();
- },
-
- function testLonghandsAreAutoExpanded(next)
- {
- InspectorTest.filterMatchedStyles("-top");
- InspectorTest.dumpRenderedMatchedStyles();
- next();
- },
-
- function testAutoExpandedLonghandsAreCollapsed(next)
- {
- InspectorTest.filterMatchedStyles(null);
- InspectorTest.dumpRenderedMatchedStyles();
- next();
- }
- ]);
-}
-</script>
-</head>
-<body onload="runTest()">
-<p>Verifies that filtering in StylesSidebarPane works as expected.</p>
-<div style="margin: 1px;" class="mydiv" id="inspected"></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698