mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision b4c87a442f82ff5e1de9a94e735b7b6c5f2e60c5
This commit is contained in:
parent
8a42710915
commit
b506d7413a
114 changed files with 1565 additions and 371 deletions
|
@ -0,0 +1,26 @@
|
|||
// 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 BYTES_PER_WORKER = 10 * 1024 * 1024;
|
||||
const worker_url = await createWorker(BYTES_PER_WORKER);
|
||||
const result = await performance.measureMemory();
|
||||
assert_greater_than_equal(result.bytes, BYTES_PER_WORKER);
|
||||
checkMeasureMemory(result, [
|
||||
{
|
||||
url: window.location.href,
|
||||
scope: 'Window',
|
||||
container: null,
|
||||
},
|
||||
{
|
||||
url: worker_url,
|
||||
scope: 'DedicatedWindow',
|
||||
container: null,
|
||||
},
|
||||
]);
|
||||
}, 'Well-formed result of performance.measureMemory.');
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue