Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Unified Diff: LayoutTests/fast/workers/resources/worker-navigator.js

Issue 592183002: [WIP]Implement Blink side changes for navigator.language(s) support for workers. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Dedicated worker languagechange event added. Still WIP. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/workers/worker-navigator-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/workers/resources/worker-navigator.js
diff --git a/LayoutTests/fast/workers/resources/worker-navigator.js b/LayoutTests/fast/workers/resources/worker-navigator.js
index 9fe39359523d95d7ccc81a5c211926d1912de91d..d94ab126087d27ee70bf665fcef640e81a629af8 100644
--- a/LayoutTests/fast/workers/resources/worker-navigator.js
+++ b/LayoutTests/fast/workers/resources/worker-navigator.js
@@ -18,6 +18,8 @@ worker.postMessage("eval navigator.userAgent.indexOf('WebKit') != 0");
worker.postMessage("eval typeof navigator.onLine");
worker.postMessage("eval navigator.appCodeName === 'Mozilla'");
worker.postMessage("eval navigator.product === 'Gecko'");
+worker.postMessage("eval typeof navigator.language");
+worker.postMessage("eval typeof navigator.languages");
worker.postMessage("eval foo//bar");
worker.onmessage = function(evt) {
« no previous file with comments | « no previous file | LayoutTests/fast/workers/worker-navigator-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698