Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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