Skip to content

Commit

Permalink
additional update to scheduler global property (#30175)
Browse files Browse the repository at this point in the history
update link
  • Loading branch information
skyclouds2001 authored Nov 11, 2023
1 parent ca0ef1b commit 5abb200
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion files/en-us/web/api/dedicatedworkerglobalscope/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ _This interface inherits properties from the {{domxref("WorkerGlobalScope")}} in
- : Returns the global object's origin, serialized as a string.
- {{domxref("performance_property", "DedicatedWorkerGlobalScope.performance")}} {{ReadOnlyInline}}
- : Returns the {{domxref("Performance")}} object associated with the worker, which is a regular performance object, but with a subset of its properties and methods available.
- {{domxref("Window.scheduler", "DedicatedWorkerGlobalScope.scheduler")}} {{ReadOnlyInline}}
- {{domxref("scheduler_property", "DedicatedWorkerGlobalScope.scheduler")}} {{ReadOnlyInline}}
- : Returns the {{domxref("Scheduler")}} object associated with the current context. This is the entry point for using the [Prioritized Task Scheduling API](/en-US/docs/Web/API/Prioritized_Task_Scheduling_API).
- {{domxref("WorkerGlobalScope.self", "DedicatedWorkerGlobalScope.self")}}
- : Returns an object reference to the `DedicatedWorkerGlobalScope` object itself.
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/serviceworkerglobalscope/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ _This interface inherits properties from the {{domxref("WorkerGlobalScope")}} in
- : Returns the global object's origin, serialized as a string.
- {{domxref("performance_property", "ServiceWorkerGlobalScope.performance")}} {{ReadOnlyInline}}
- : Returns the {{domxref("Performance")}} object associated with the worker, which is a regular performance object, but with a subset of its properties and methods available.
- {{domxref("Window.scheduler", "ServiceWorkerGlobalScope.scheduler")}} {{ReadOnlyInline}}
- {{domxref("scheduler_property", "ServiceWorkerGlobalScope.scheduler")}} {{ReadOnlyInline}}
- : Returns the {{domxref("Scheduler")}} object associated with the current context. This is the entry point for using the [Prioritized Task Scheduling API](/en-US/docs/Web/API/Prioritized_Task_Scheduling_API).
- {{domxref("WorkerGlobalScope.self", "ServiceWorkerGlobalScope.self")}}
- : Returns an object reference to the `ServiceWorkerGlobalScope` object itself.
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/sharedworkerglobalscope/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ _This interface inherits properties from the {{domxref("WorkerGlobalScope")}} in
- : Returns the global object's origin, serialized as a string.
- {{domxref("performance_property", "SharedWorkerGlobalScope.performance")}} {{ReadOnlyInline}}
- : Returns the {{domxref("Performance")}} object associated with the worker, which is a regular performance object, but with a subset of its properties and methods available.
- {{domxref("Window.scheduler", "SharedWorkerGlobalScope.scheduler")}} {{ReadOnlyInline}}
- {{domxref("scheduler_property", "SharedWorkerGlobalScope.scheduler")}} {{ReadOnlyInline}}
- : Returns the {{domxref("Scheduler")}} object associated with the current context. This is the entry point for using the [Prioritized Task Scheduling API](/en-US/docs/Web/API/Prioritized_Task_Scheduling_API).
- {{domxref("WorkerGlobalScope.self", "SharedWorkerGlobalScope.self")}}
- : Returns an object reference to the `SharedWorkerGlobalScope` object itself.
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/window/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Note that properties which are objects (e.g., for overriding the prototype of bu
- : Returns a {{domxref("Performance")}} object, which includes the {{domxref("Performance.timing", "timing")}} and {{domxref("Performance.navigation", "navigation")}} attributes, each of which is an object providing [performance-related](/en-US/docs/Web/API/Performance_API/Navigation_timing) data. See also [Using Navigation Timing](/en-US/docs/Web/API/Performance_API/Navigation_timing) for additional information and examples.
- {{domxref("Window.personalbar")}} {{ReadOnlyInline}}
- : Returns the personalbar object.
- {{domxref("Window.scheduler")}} {{ReadOnlyInline}}
- {{domxref("scheduler_property", "Window.scheduler")}} {{ReadOnlyInline}}
- : Returns the {{domxref("Scheduler")}} object associated with the current context. This is the entry point for using the [Prioritized Task Scheduling API](/en-US/docs/Web/API/Prioritized_Task_Scheduling_API).
- {{domxref("Window.screen")}} {{ReadOnlyInline}}
- : Returns a reference to the screen object associated with the window.
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/workerglobalscope/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ _This interface inherits properties from the {{domxref("EventTarget")}} interfac
- : Returns the global object's origin, serialized as a string.
- {{domxref("performance_property", "WorkerGlobalScope.performance")}} {{ReadOnlyInline}}
- : Returns the {{domxref("Performance")}} associated with the worker. It is a regular performance object, except that only a subset of its property and methods are available to workers.
- {{domxref("Window.scheduler", "WorkerGlobalScope.scheduler")}} {{ReadOnlyInline}}
- {{domxref("scheduler_property", "WorkerGlobalScope.scheduler")}} {{ReadOnlyInline}}
- : Returns the {{domxref("Scheduler")}} object associated with the current context. This is the entry point for using the [Prioritized Task Scheduling API](/en-US/docs/Web/API/Prioritized_Task_Scheduling_API).
- {{domxref("WorkerGlobalScope.self")}} {{ReadOnlyInline}}
- : Returns a reference to the `WorkerGlobalScope` itself. Most of the time it is a specific scope like {{domxref("DedicatedWorkerGlobalScope")}}, {{domxref("SharedWorkerGlobalScope")}} or {{domxref("ServiceWorkerGlobalScope")}}.
Expand Down

0 comments on commit 5abb200

Please sign in to comment.