1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-08 05:27:14 +09:00
ladybird/Libraries/LibWeb/HTML/NavigatorLanguage.idl
2025-04-25 16:43:43 +02:00

6 lines
278 B
Text

// https://html.spec.whatwg.org/multipage/system-state.html#navigatorlanguage
interface mixin NavigatorLanguage {
readonly attribute DOMString language;
// FIXME: This is supposed always return the same object
readonly attribute FrozenArray<DOMString> languages;
};