| 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");
|
| });
|
|
|