-
Notifications
You must be signed in to change notification settings - Fork 22.8k
FF142 Relnote/Expr: Prioritized task scheduling API #40553
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
FF142 Relnote/Expr: Prioritized task scheduling API #40553
Conversation
@@ -53,6 +53,11 @@ Firefox 142 is the current [Beta version of Firefox](https://www.firefox.com/en- | |||
#### DOM | |||
|
|||
- The {{domxref("Selection.getComposedRanges()")}} method is now supported, allowing developers to accurately get selected text ranges across shadow DOM boundaries. In addition, the methods {{domxref("Selection.setBaseAndExtent()","setBaseAndExtent()")}}, {{domxref("Selection.collapse()","collapse()")}}, and {{domxref("Selection.extend()","extend()")}} of the {{domxref("Selection")}} interface have been modified to accept nodes inside a shadow root. ([Firefox bug 1903870](https://bugzil.la/1903870)). | |||
- The [Prioritized Task Scheduling API](/en-US/docs/Web/API/Prioritized_Task_Scheduling_API) is now supported, providing a standardized mechanism to assign and manage task priorities for an application. | |||
The supported interfaces include: {{domxref("Scheduler")}}, {{domxref("TaskController")}}, {{domxref("TaskSignal")}}, {{domxref("TaskPriorityChangeEvent")}} (and the {{domxref("TaskSignal/prioritychange_event","prioritychange")}} event), and the properties {{domxref("Window.scheduler")}} and {{domxref("WorkerGlobalScope.scheduler")}}. | |||
The {{domxref("Scheduling")}} interface and {{domxref("Navigator.scheduling")}} property are not supported. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note, these two are not supported, which is why I've explicitly listed out all the interfaces that are supported too.
The supported interfaces include: {{domxref("Scheduler")}}, {{domxref("TaskController")}}, {{domxref("TaskSignal")}}, {{domxref("TaskPriorityChangeEvent")}} (and the {{domxref("TaskSignal/prioritychange_event","prioritychange")}} event), and the properties {{domxref("Window.scheduler")}} and {{domxref("WorkerGlobalScope.scheduler")}}. | ||
The {{domxref("Scheduling")}} interface and {{domxref("Navigator.scheduling")}} property are not supported. | ||
([Firefox bug 1966997](https://bugzil.la/1966997)). | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[mdn-linter] reported by reviewdog 🐶
FF142 supports the Prioritized Task Scheduling AP in https://bugzilla.mozilla.org/show_bug.cgi?id=1966997
This adds a release note and removes the experimental features entry.
Related docs work can be tracked in #40484