Revision df4bdf53c4e851fe1006f0fcc2943fc8cd7f3a92 authored by Florian Rivoal on 29 March 2018, 06:13:03 UTC, committed by Florian Rivoal on 29 March 2018, 06:13:03 UTC
1 parent 55846d5
Raw File
serviceworker_cookieStore_arguments.js
self.GLOBAL = {
  isWindow: function() { return false; },
  isWorker: function() { return true; },
};
importScripts("/resources/testharness.js");

importScripts(
    "cookieStore_delete_arguments.tentative.window.js",
    "cookieStore_get_arguments.tentative.window.js",
    "cookieStore_getAll_arguments.tentative.window.js",
    "cookieStore_has_arguments.tentative.window.js",
    "cookieStore_set_arguments.tentative.window.js");

done();
back to top