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

Unified Diff: third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-request-document-with-child-nodes.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-document-with-child-nodes.html
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-request-document-with-child-nodes.html b/third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-request-document-with-child-nodes.html
index 40f4a67c6a399268a02847716cd44c5f0528451e..662242dcc76035cd0e06ec7347b89b11c66ea66e 100644
--- a/third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-request-document-with-child-nodes.html
+++ b/third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-request-document-with-child-nodes.html
@@ -38,7 +38,7 @@ function test()
function getDocumentPlusIframe()
{
- InspectorTest.sendCommand("DOM.getDocument", {"depth": -1, "traverseFrames": true}, function(messageObject) {
+ InspectorTest.sendCommand("DOM.getDocument", {"depth": -1, "pierce": true}, function(messageObject) {
if (messageObject.hasOwnProperty("error"))
InspectorTest.log("Backend error: " + messageObject.error.message + " (" + messageObject.error.code + ")\n");
@@ -73,9 +73,10 @@ window.addEventListener("DOMContentLoaded", function () {
<div id="depth-1">
<div id="depth-2">
<div id="depth-3">
- <iframe src="resources/iframe.html"></iframe>
+ <iframe src="resources/shadow-dom-iframe.html"></iframe>
</div>
</div>
+ <div id="targetDiv"></div>
</div>
</body>

Powered by Google App Engine
This is Rietveld 408576698