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

Unified Diff: LayoutTests/inspector/elements/styles/svg-style.xhtml

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/svg-style.xhtml
diff --git a/LayoutTests/inspector/elements/styles/svg-style.xhtml b/LayoutTests/inspector/elements/styles/svg-style.xhtml
deleted file mode 100644
index 0b8012b399e13236869ff4ba5ec5316609a4de03..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/elements/styles/svg-style.xhtml
+++ /dev/null
@@ -1,36 +0,0 @@
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-
-<script src="../../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../../http/tests/inspector/elements-test.js"></script>
-<script>
-
-function test()
-{
- InspectorTest.selectNodeAndWaitForStyles("main", step1);
-
- function step1()
- {
- InspectorTest.addResult("Main style:");
- InspectorTest.dumpSelectedElementStyles(true, false, true);
- InspectorTest.completeTest();
- }
-}
-</script>
-</head>
-
-<body onload="runTest()">
-<p>
-Tests that svg:style does not crash when the related element is inspected.
-</p>
-
-<svg:svg xmlns:svg="http://www.w3.org/2000/svg" version="1.1">
- <svg:defs>
- <svg:style type="text/css">
- rect {fill: red}
- </svg:style>
- </svg:defs>
- <svg:rect id="main" width="100" height="100"/>
-</svg:svg>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698