| 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>
|
|
|