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

Unified Diff: LayoutTests/inspector/elements/set-attribute-non-html.svg

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/set-attribute-non-html.svg
diff --git a/LayoutTests/inspector/elements/set-attribute-non-html.svg b/LayoutTests/inspector/elements/set-attribute-non-html.svg
deleted file mode 100644
index 62b0b96d8f334f26ffe83fd0428ddc743d31140e..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/elements/set-attribute-non-html.svg
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg">
-<foreignObject>
-<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><![CDATA[
-
-function test()
-{
- var targetNode;
-
- InspectorTest.runTestSuite([
- function testDumpInitial(next)
- {
- function callback(node)
- {
- targetNode = node;
- next();
- }
- InspectorTest.selectNodeWithId("node", callback);
- },
-
- function testSetAttributeText(next)
- {
- function callback(error)
- {
- next();
- }
- targetNode.setAttribute("foo", "foo2='baz2' foo3='baz3'", callback);
- }
- ]);
-}
-]]>
-</script>
-</head>
-
-<body onload="runTest()">
-<p>
-Tests that elements panel updates dom tree structure upon setting attribute on non HTML elements. PASSes if there is no crash.
-</p>
-
-<div id="node"></div>
-
-</body>
-</html>
-</foreignObject>
-</svg>

Powered by Google App Engine
This is Rietveld 408576698