blob: 7c0a63d6393aff6cf09de3fd394f559d20877f38 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://html.spec.whatwg.org/multipage/workers.html#workeroptions
dictionary WorkerOptions {
WorkerType type = "classic";
RequestCredentials credentials = "omit";
// TODO(nhiroki): Implement "name" option (https://crbug.com/721219)
// DOMString name = "";
};
enum WorkerType { "classic", "module" };