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> |