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

Unified Diff: LayoutTests/inspector/elements/update-shadowdom.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/update-shadowdom.html
diff --git a/LayoutTests/inspector/elements/update-shadowdom.html b/LayoutTests/inspector/elements/update-shadowdom.html
deleted file mode 100644
index ceec74f04576ebdcce7cd3f64b2c7d756910f5a6..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/elements/update-shadowdom.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<html>
-<head>
-<script src="../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../http/tests/inspector/elements-test.js"></script>
-<script>
-function updateShadowDOM()
-{
- shadowRoot.removeChild(shadowRoot.firstChild);
-}
-
-function test()
-{
- InspectorTest.expandElementsTree(function() {
- InspectorTest.evaluateInPage("updateShadowDOM()", function() {
- InspectorTest.expandElementsTree(function() {
- var containerElem = InspectorTest.expandedNodeWithId('container');
- InspectorTest.dumpElementsTree(containerElem);
- InspectorTest.completeTest();
- });
- });
- });
-}
-</script>
-</head>
-
-<body onload="runTest()">
-
-<p id="description">This test confirms that updating the shadow dom is reflected to the Inspector.</p>
-
-<div id="container">
- <div id="host"></div>
-</div>
-
-<script>
-var shadowRoot = host.createShadowRoot();
-shadowRoot.innerHTML = "<div></div>";
-</script>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698