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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-shadow-2.html

Issue 1875293003: DevTools: split edit-dom-actions-shadow.html into two tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@edit-dom-actions.html
Patch Set: Created 4 years, 8 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: third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-shadow-2.html
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-shadow.html b/third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-shadow-2.html
similarity index 78%
rename from third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-shadow.html
rename to third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-shadow-2.html
index 65e9c101b58043036e19c5749a4a8954d5c52eb4..f82d64889be792041987e7abbecf714a5f137f60 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-shadow.html
+++ b/third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-shadow-2.html
@@ -19,16 +19,6 @@ function test()
InspectorTest.expandElementsTree(next);
},
- function testSetAuthorShadowDOMElementAttribute(next)
- {
- InspectorTest.domActionTestForNodeId("testSetAuthorShadowDOMElementAttribute", "shadow-node-to-set-attribute", testBody, next);
-
- function testBody(node, done)
- {
- InspectorTest.editNodePartAndRun(node, "webkit-html-attribute", "bar=\"edited attribute\"", done, true);
- }
- },
-
function testEditShadowDOMAsHTML(next)
{
InspectorTest.domActionTestForNodeId("testEditAuthorShadowDOMAsHTML", "authorShadowDOMElement", testBody, next);
@@ -51,7 +41,6 @@ function test()
}
}
}
-
]);
}
@@ -65,8 +54,6 @@ Tests that user can mutate author shadow DOM by means of elements panel.
<div>
<div id="testEditAuthorShadowDOMAsHTML"></div>
-
- <div id="testSetAuthorShadowDOMElementAttribute"></div>
</div>
<script>
function createRootWithContents(id, html)
@@ -77,7 +64,6 @@ function createRootWithContents(id, html)
}
createRootWithContents("testEditAuthorShadowDOMAsHTML", "<div id='authorShadowDOMElement'></div>");
-createRootWithContents("testSetAuthorShadowDOMElementAttribute", "<div foo='attribute value' id='shadow-node-to-set-attribute'></div>");
</script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698