https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 1c347c1bcbe13cec655b8487ff2c67f0232bdc90 authored by Luke Bjerring on 29 March 2018, 14:49:12 UTC
Check inherited interfaces exist
Tip revision: 1c347c1
interfaces.https.worker.js
'use strict';

importScripts('/resources/testharness.js');
importScripts('/resources/WebIDLParser.js', '/resources/idlharness.js');

promise_test(t => {
  return fetch('/interfaces/storage.idl')
    .then(response => response.text())
    .then(idls => {
      var idl_array = new IdlArray();

      idl_array.add_untested_idls('interface Navigator {};');
      idl_array.add_untested_idls('[Exposed=Worker] interface WorkerNavigator {};');

      idl_array.add_idls(idls);

      idl_array.add_objects({
        StorageManager: ['navigator.storage']
      });

      idl_array.test();
      t.done();
    });
}, 'Storage API IDL test');

done();
back to top