diff options
author | Luca Matei Pintilie <lucafulger@gmail.com> | 2022-10-18 15:33:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-18 15:33:35 +0200 |
commit | 1a0c7edebacc76a70e57dfd494e24420fa77b56b (patch) | |
tree | afa26f8db4dd121f548e19f92f84c1da589708c4 /runtime/worker.rs | |
parent | 23bb0abc230bd796e60bb8e22ccc39aef5629158 (diff) |
feat: introduce navigator.language (#12322)
Link to the spec:
https://html.spec.whatwg.org/multipage/system-state.html#dom-navigator-language-dev
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'runtime/worker.rs')
-rw-r--r-- | runtime/worker.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/worker.rs b/runtime/worker.rs index 36833da32..61cdfb94e 100644 --- a/runtime/worker.rs +++ b/runtime/worker.rs @@ -549,6 +549,7 @@ mod tests { cpu_count: 1, debug_flag: false, enable_testing_features: false, + locale: deno_core::v8::icu::get_language_tag(), location: None, no_color: true, is_tty: false, |