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

Side by Side Diff: third_party/WebKit/LayoutTests/virtual/enable_asmjs/http/tests/asmjs/worker.js

Issue 2530503002: [wasm][asm.js] Routing asm.js warnings to the dev console. (Closed)
Patch Set: merge Created 4 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 self.onmessage = function(e) {
2 function ModuleBadAsm() {
3 "use asm";
4 var x = 1;
5 var y = x + 1;
6 function foo() {}
7 return {bar: foo};
8 }
9 ModuleBadAsm();
10 self.postMessage({name: 'dude'});
11 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698