Reviewers: jarin,
Description:
Fix ReferenceError of Worker in regress-crbug-503578
BUG=chromium:503578
[email protected]
LOG=n
Please review this at https://codereview.chromium.org/1202763004/
Base URL: https://chromium.googlesource.com/v8/v8.git@master
Affected files (+12, -10 lines):
M test/mjsunit/regress/regress-crbug-503578.js
Index: test/mjsunit/regress/regress-crbug-503578.js
diff --git a/test/mjsunit/regress/regress-crbug-503578.js
b/test/mjsunit/regress/regress-crbug-503578.js
index
931509efebe57fb91427111b482b14a1f519173f..c32f8da06d7c5cec82e13ba93d5d3c0785525425
100644
--- a/test/mjsunit/regress/regress-crbug-503578.js
+++ b/test/mjsunit/regress/regress-crbug-503578.js
@@ -2,14 +2,16 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-function __f_1() {
- onmessage = function() {}
+if (this.Worker) {
+ function __f_1() {
+ onmessage = function() {}
+ }
+ function __f_0(byteLength) {
+ var __v_1 = new ArrayBuffer(byteLength);
+ var __v_5 = new Uint32Array(__v_1);
+ return __v_5;
+ }
+ var __v_6 = new Worker(__f_1);
+ var __v_3 = __f_0(16);
+ __v_6.postMessage(__v_3);
}
-function __f_0(byteLength) {
- var __v_1 = new ArrayBuffer(byteLength);
- var __v_5 = new Uint32Array(__v_1);
- return __v_5;
-}
-var __v_6 = new Worker(__f_1);
-var __v_3 = __f_0(16);
-__v_6.postMessage(__v_3);
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.