mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
8 lines
360 B
Plaintext
8 lines
360 B
Plaintext
// https://html.spec.whatwg.org/multipage/system-state.html#navigatorlanguage
|
|
interface mixin NavigatorLanguage {
|
|
readonly attribute DOMString language;
|
|
// FIXME: readonly attribute FrozenArray<DOMString> languages;
|
|
// This is supposed to be a FrozenArray that always returns the same object
|
|
readonly attribute sequence<DOMString> languages;
|
|
};
|