mirror of
https://github.com/servo/servo.git
synced 2025-10-09 04:59:23 +01:00
24 lines
881 B
JavaScript
24 lines
881 B
JavaScript
//META: script=/resources/testdriver.js
|
|
//META: script=/resources/testdriver-vendor.js
|
|
|
|
'use strict';
|
|
|
|
promise_test(async t => {
|
|
const fonts = await self.queryLocalFonts();
|
|
assert_equals(
|
|
fonts.length, 0, 'Fonts are not returned with permission not given.');
|
|
}, 'queryLocalFonts(): permission not given');
|
|
|
|
promise_test(async t => {
|
|
await test_driver.set_permission({name: 'local-fonts'}, 'denied');
|
|
const fonts = await self.queryLocalFonts();
|
|
assert_equals(
|
|
fonts.length, 0, 'Fonts are not returned with permission denied.');
|
|
}, 'queryLocalFonts(): permission denied');
|
|
|
|
promise_test(async t => {
|
|
await test_driver.set_permission({name: 'local-fonts'}, 'granted');
|
|
const fonts = await self.queryLocalFonts();
|
|
assert_greater_than_equal(
|
|
fonts.length, 1, 'Fonts are returned with permission granted.');
|
|
}, 'queryLocalFonts(): permission granted');
|