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

Unified Diff: LayoutTests/inspector/elements/delete-from-document.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/delete-from-document.html
diff --git a/LayoutTests/inspector/elements/delete-from-document.html b/LayoutTests/inspector/elements/delete-from-document.html
deleted file mode 100644
index 9f7051ce3d3a00de7a97cdf1bc73d983463b037d..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/elements/delete-from-document.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<head>
-<script src="../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../http/tests/inspector/elements-test.js"></script>
-<script>
-
-function removeDoctype()
-{
- document.removeChild(document.firstChild);
-}
-
-function test()
-{
- InspectorTest.expandElementsTree(step1);
-
- function step1()
- {
- InspectorTest.addResult("Before remove doctype");
- InspectorTest.dumpElementsTree(null, 1);
- InspectorTest.evaluateInPage("removeDoctype()", step2);
- }
-
- function step2()
- {
- InspectorTest.addResult("After remove doctype");
- InspectorTest.dumpElementsTree(null, 1);
- InspectorTest.completeTest();
- }
-}
-
-</script>
-</head>
-
-<body onload="runTest()">
-<p>
-Tests that removing child from the document is handled properly in the elements panel.
-</p>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698