Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /measure-memory/window-open.cross-site.https.window.html - WPT Dashboard Interop Dashboard
// META: script=/common/get-host-info.sub.js
// META: script=./resources/checker.js
// META: script=./resources/common.js
// META: timeout=long
'use strict';
promise_test(async testCase => {
assert_true(self.crossOriginIsolated);
const {iframes, windows} = await build([
{
id: 'cross-site-1',
window_open: true,
children: [
{
id: 'same-origin-2',
window_open: true,
},
{
id: 'same-origin-3',
},
{
id: 'cross-origin-4',
},
]
},
]);
const result = await performance.measureUserAgentSpecificMemory();
checkMeasureMemory(result, [
{
url: window.location.href,
scope: 'Window',
container: null,
},
]);
}, 'performance.measureUserAgentSpecificMemory does not leak URL of cross-site window.open.');