A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://developer.mozilla.org/en-US/docs/Web/API/TaskPriorityChangeEvent/previousPriority below:

TaskPriorityChangeEvent: previousPriority property - Web APIs

TaskPriorityChangeEvent: previousPriority property

Limited availability

Note: This feature is available in Web Workers.

The previousPriority read-only property of the TaskPriorityChangeEvent interface returns the priority of the corresponding TaskSignal before it was changed and this prioritychange event was emitted.

This is the value that was set in the TaskPriorityChangeEvent constructor argument options.previous.

The new priority of the task can be read from event.target.priority.

Value

A string, indicating the associated task's priority before it was changed. This will be one of: "user-blocking", "user-visible", "background".

Examples

The code below shows the previousPriority being obtained in a handler for a prioritychange event.

// Listen for 'prioritychange' events on the controller's signal.
controller.signal.addEventListener("prioritychange", (event) => {
  const previousPriority = event.previousPriority;
  const newPriority = event.target.priority;
  console.log(
    `The priority changed from ${previousPriority} to ${newPriority}.`,
  );
});

A more complete live example can be found in prioritychange event > Examples.

Specifications Browser compatibility

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4