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

Unified Diff: third_party/WebKit/LayoutTests/inspector-protocol/timeline/page-frames.html

Issue 2486923005: Timeline: add moar attributes in frame instrumentation (Closed)
Patch Set: rebased 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector-protocol/timeline/page-frames-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector-protocol/timeline/page-frames.html
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/timeline/page-frames.html b/third_party/WebKit/LayoutTests/inspector-protocol/timeline/page-frames.html
index f7746709b28420b62238ad2339d6d22d7aabef81..f6621af7e73b376476bee4ab486578fc86befbb1 100644
--- a/third_party/WebKit/LayoutTests/inspector-protocol/timeline/page-frames.html
+++ b/third_party/WebKit/LayoutTests/inspector-protocol/timeline/page-frames.html
@@ -38,11 +38,12 @@ function test()
function dumpFrame(frame)
{
var url = frame.url.replace(/.*\/(([^/]*\/){2}[^/]*$)/, "$1");
- InspectorTest.log(`url: ${url} name: ${frame.name}`);
+ InspectorTest.log(`url: ${url} name: ${frame.name} parent: ${typeof frame.parent} nodeId: ${typeof frame.nodeId}`);
}
}
</script>
</head>
<body onLoad="runTest();">
+<iframe src="data:text/html,<script>window.foo = 42</script>" name="frame0"></iframe>
</body>
</html>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector-protocol/timeline/page-frames-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698