Fetching.idl 603 B

123456789101112131415161718192021
  1. // https://html.spec.whatwg.org/multipage/urls-and-fetching.html#cors-settings-attribute
  2. [InvalidValueDefault=anonymous]
  3. enum CORSSettingsAttribute {
  4. "anonymous",
  5. "use-credentials"
  6. };
  7. // https://html.spec.whatwg.org/multipage/urls-and-fetching.html#lazy-loading-attribute
  8. [MissingValueDefault=eager, InvalidValueDefault=eager]
  9. enum LazyLoadingAttribute {
  10. "lazy",
  11. "eager"
  12. };
  13. // https://html.spec.whatwg.org/multipage/urls-and-fetching.html#fetch-priority-attributes
  14. [MissingValueDefault=auto, InvalidValueDefault=auto]
  15. enum FetchPriorityAttribute {
  16. "high",
  17. "low",
  18. "auto"
  19. };