Fetching.idl 391 B

12345678910111213
  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. };