blob: d977c3a84ee950915e41ce576e86359a3eb7cb63 [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-origin-1',
children: [
{
id: 'same-origin-2',
},
{
id: 'cross-origin-3',
},
{
id: 'cross-site-4',
}
],
},
]);
const result = await performance.measureUserAgentSpecificMemory();
checkMeasureMemory(result, [
{
url: window.location.href,
scope: 'Window',
container: null,
},
{
url: 'cross-origin-url',
scope: 'cross-origin-aggregated',
container: {
id: 'cross-origin-1',
src: iframes['cross-origin-1'].src,
},
},
{
url: windows['same-origin-2'].location.href,
scope: 'Window',
container: {
id: 'cross-origin-1',
src: iframes['cross-origin-1'].src,
},
},
]);
}, 'performance.measureUserAgentSpecificMemory URLs within a cross-origin iframe.');