Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 2 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /ai/writer/writer-create.tentative.https.window.html - WPT Dashboard Interop Dashboard
// META: title=Writer Create
// META: script=/resources/testdriver.js
// META: script=../resources/util.js
// META: timeout=long
'use strict';
promise_test(async () => {
assert_true(!!Writer);
}, 'Writer must be defined.');
promise_test(async t => {
// Creating Writer without user activation rejects with NotAllowedError.
await promise_rejects_dom(t, 'NotAllowedError', Writer.create());
// Creating Writer with user activation succeeds.
await createWriter();
// Expect available after create.
assert_equals(await Writer.availability(), 'available');
// Now that it is available, we should no longer need user activation.
await Writer.create();
}, 'Writer.create() requires user activation when availability is "downloadable"');