blob: a5fc1d31bd9d2a8c79595da9bd0b27045bf55cf4 [file] [log] [blame]
// META: script=/common/get-host-info.sub.js
// META: script=./resources/common.js
// META: timeout=long
'use strict';
assert_true(self.crossOriginIsolated);
promise_test(async testCase => {
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.');