Skip to content

Commit

Permalink
Expose everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
Ms2ger committed Oct 20, 2021
1 parent 3404bfa commit 6e28b89
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions spec/controlling-tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The `TaskPriorityChangeEvent` Interface {#sec-task-priority-change-event}
---------------------

<pre class='idl'>
[Exposed=(Window, Worker)]
[Exposed=*]
interface TaskPriorityChangeEvent : Event {
constructor(DOMString type, TaskPriorityChangeEventInit priorityChangeEventInitDict);

Expand Down Expand Up @@ -46,7 +46,7 @@ The `TaskController` Interface {#sec-task-controller}
TaskPriority priority = "user-visible";
};

[Exposed=(Window,Worker)]
[Exposed=*]
interface TaskController : AbortController {
constructor(optional TaskControllerInit init = {});

Expand Down Expand Up @@ -90,7 +90,7 @@ The `TaskSignal` Interface {#sec-task-signal}
---------------------

<pre class='idl'>
[Exposed=(Window, Worker)]
[Exposed=*]
interface TaskSignal : AbortSignal {
readonly attribute TaskPriority priority;

Expand Down
2 changes: 1 addition & 1 deletion spec/scheduling-tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ The `Scheduler` Interface {#sec-scheduler}
callback SchedulerPostTaskCallback = any ();
[Exposed=(Window, Worker)]
[Exposed=*]
interface Scheduler {
Promise<any> postTask(SchedulerPostTaskCallback callback,
optional SchedulerPostTaskOptions options = {});
Expand Down

0 comments on commit 6e28b89

Please sign in to comment.