mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 19:04:58 +00:00
This change makes our crossOrigin attribute getter behave the same way as other browsers.
7 lines
192 B
Plaintext
7 lines
192 B
Plaintext
// https://html.spec.whatwg.org/multipage/urls-and-fetching.html#cors-settings-attribute
|
|
[InvalidValueDefault=anonymous]
|
|
enum CORSSettingsAttribute {
|
|
"anonymous",
|
|
"use-credentials"
|
|
};
|