mirror of
https://github.com/servo/servo
synced 2026-05-12 18:06:32 +02:00
20 lines
821 B
JavaScript
20 lines
821 B
JavaScript
// META: script=helpers.js
|
|
// META: script=/resources/testdriver.js
|
|
// META: script=/resources/testdriver-vendor.js
|
|
'use strict';
|
|
|
|
(async function() {
|
|
// Set up storage access rules
|
|
try {
|
|
await test_driver.set_storage_access("https://{{domains[www]}}:{{ports[https][0]}}/", "*", "blocked");
|
|
} catch (e) {
|
|
// Ignore, can be unimplemented if the platform blocks cross-site cookies
|
|
// by default. If this failed without default blocking we'll notice it later
|
|
// in the test.
|
|
}
|
|
|
|
// Validate the nested-iframe scenario where the cross-origin frame
|
|
// containing the tests is not the first child.
|
|
RunTestsInNestedIFrame('https://{{domains[www]}}:{{ports[https][0]}}/storage-access-api/resources/requestStorageAccess-iframe.https.html?testCase=nested-cross-origin-frame&rootdocument=false');
|
|
})();
|