mirror of
https://github.com/servo/servo.git
synced 2025-06-24 09:04:33 +01:00
35 lines
815 B
JavaScript
35 lines
815 B
JavaScript
// 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',
|
|
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-origin window.open.');
|