Victor Porof | 6e09692 | 2022-06-10 13:01:05 +0000 | [diff] [blame] | 1 | // GENERATED CONTENT - DO NOT EDIT |
| 2 | // Content was automatically extracted by Reffy into webref |
| 3 | // (https://github.com/w3c/webref) |
| 4 | // Source: Priority Hints (https://wicg.github.io/priority-hints/) |
| 5 | |
| 6 | enum FetchPriority { "high", "low", "auto" }; |
| 7 | |
| 8 | partial interface Request { |
| 9 | readonly attribute FetchPriority priority; |
| 10 | }; |
| 11 | |
| 12 | partial dictionary RequestInit { |
| 13 | FetchPriority priority; |
| 14 | }; |
| 15 | |
| 16 | partial interface HTMLImageElement { |
| 17 | [CEReactions] attribute DOMString fetchPriority; |
| 18 | }; |
| 19 | |
| 20 | partial interface HTMLLinkElement { |
| 21 | [CEReactions] attribute DOMString fetchPriority; |
| 22 | }; |
| 23 | |
| 24 | partial interface HTMLScriptElement { |
| 25 | [CEReactions] attribute DOMString fetchPriority; |
| 26 | }; |
| 27 | |
| 28 | partial interface HTMLIFrameElement { |
| 29 | [CEReactions] attribute DOMString fetchPriority; |
| 30 | }; |