Update web-platform-tests to revision b4c87a442f82ff5e1de9a94e735b7b6c5f2e60c5

This commit is contained in:
WPT Sync Bot 2021-01-13 08:21:27 +00:00
parent 8a42710915
commit b506d7413a
114 changed files with 1565 additions and 371 deletions

View file

@ -0,0 +1,43 @@
// 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: 'same-origin-1',
children: [
{
id: 'same-origin-2',
}
],
},
]);
const result = await performance.measureMemory();
checkMeasureMemory(result, [
{
url: window.location.href,
scope: 'Window',
container: null,
},
{
url: windows['same-origin-1'].location.href,
scope: 'Window',
container: {
id: 'same-origin-1',
src: iframes['same-origin-1'].src,
},
},
{
url: windows['same-origin-2'].location.href,
scope: 'Window',
container: {
id: 'same-origin-2',
src: iframes['same-origin-2'].src,
},
},
]);
}, 'Well-formed result of performance.measureMemory with same-origin iframes.');