https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 69d9810a2c331f065275c65af9a53ab25cc12496 authored by Geoffrey Sneddon on 19 March 2018, 12:34:55 UTC
Remove dependency on external server for background-attachment-004
Tip revision: 69d9810
interfaces.worker.js
'use strict';

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

promise_test(function() {
  return fetch('/interfaces/background-fetch.idl')
    .then(response => response.text())
    .then(idls => {
      var idlArray = new IdlArray();
      idlArray.add_untested_idls('interface ServiceWorkerRegistration {};');
      idlArray.add_untested_idls('[Exposed=ServiceWorker] interface ServiceWorkerGlobalScope {};');
      idlArray.add_idls(idls);
      idlArray.test();
    });
}, 'Exposed interfaces in a Service Worker.');

done();
back to top