Skip to content

Commit 8d90132

Browse files
authored
Add feature flags to implementation status (#46)
1 parent 3c8ca43 commit 8d90132

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

implementation-status.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,29 @@ various APIs and their statuses, please see the repo's
1515
| TaskPriorityChangeEvent with `previousPriority` property | 91.0.4469.4 |
1616
| `postTask` and `currentTaskSignal` on Workers | 93.0.4549.3 |
1717

18+
### Feature Flags
19+
20+
| Feature | Flag(s) |
21+
| --- | --- |
22+
| `scheduler.postTask()`, `TaskController`, `TaskSignal` | `WebScheduler` |
23+
| `scheduler.currentTaskSignal` | `WebScheduler`,`SchedulerCurrentTaskSignal` |
24+
1825
## Local Testing
1926

2027
There are two ways to enable the experimental scheduling features in Chrome:
2128

2229
**Method 1**: Enable **all** experimental web platform features by navigating to
23-
`chrome://flags/#enable-experimental-web-platform-features`.
2430

25-
**Method 2**: Enable just the scheduling features by passing the
26-
`--enable-blink-features=WebScheduler` flag at the command line.
31+
```
32+
chrome://flags/#enable-experimental-web-platform-features
33+
```
34+
35+
**Method 2**: Enable just the desired scheduling features by passing the
36+
appropriate [flags](#feature-flags) at the command line, for example:
37+
38+
```
39+
--enable-blink-features=WebScheduler
40+
```
2741

2842
## Origin Trials
2943

0 commit comments

Comments
 (0)