1 // META: script=/common/get-host-info.sub.js
2 // META: script=./resources/common.js
6 assert_true(self.crossOriginIsolated);
8 promise_test(async testCase => {
9 const {iframes, windows} = await build([
24 const result = await performance.measureMemory();
25 checkMeasureMemory(result, [
27 url: window.location.href,
32 url: windows['same-origin-1'].location.href,
37 url: windows['same-origin-2'].location.href,
42 url: windows['same-origin-3'].location.href,
46 src: iframes['same-origin-3'].src,
50 }, 'Well-formed result of performance.measureMemory with same-origin window.open.');