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

Unified Diff: third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-request-child-nodes-traverse-frames.html

Issue 2495623002: Rename traverseFrames to pierce and traverse shadow dom too. (Closed)
Patch Set: Rename traverseFrames to pierce. Created 4 years, 1 month 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-protocol/dom/dom-request-child-nodes-traverse-frames.html
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-request-child-nodes-traverse-frames.html b/third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-request-child-nodes-traverse-frames.html
index 1e5b6d992869ef0ba614fb546bf72c82df4647be..58f9bd2af26ce9f13d2e8935da5b7d62d9aac389 100644
--- a/third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-request-child-nodes-traverse-frames.html
+++ b/third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-request-child-nodes-traverse-frames.html
@@ -39,7 +39,7 @@ function test()
function getDocumentIncludingIframe()
{
- InspectorTest.sendCommand("DOM.getDocument", {"traverseFrames": true}, function(messageObject) {
+ InspectorTest.sendCommand("DOM.getDocument", {"pierce": true}, function(messageObject) {
if (messageObject.hasOwnProperty("error"))
InspectorTest.log("Backend error: " + messageObject.error.message + " (" + messageObject.error.code + ")\n");
@@ -63,7 +63,7 @@ function test()
function requestAllChildNodesIncludingIframe(bodyId)
{
- InspectorTest.sendCommand("DOM.requestChildNodes", {"nodeId": bodyId, "depth": -1, "traverseFrames": true}, function(messageObject) {
+ InspectorTest.sendCommand("DOM.requestChildNodes", {"nodeId": bodyId, "depth": -1, "pierce": true}, function(messageObject) {
if (messageObject.hasOwnProperty("error"))
InspectorTest.log("Backend error: " + messageObject.error.message + " (" + messageObject.error.code + ")\n");
});

Powered by Google App Engine
This is Rietveld 408576698