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

Unified Diff: test/mjsunit/get-prototype-of.js

Issue 1501673002: Revert of [es6] Correctify and unify ArrayBuffer and SharedArrayBuffer constructors. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/es6/typedarray.js ('k') | test/mjsunit/harmony/reflect-get-prototype-of.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/get-prototype-of.js
diff --git a/test/mjsunit/get-prototype-of.js b/test/mjsunit/get-prototype-of.js
index a6acf670d177df615868657bd11f375f2b81d8ea..47edcb0a771123f03dbd275ccf20a3872f2d58bc 100644
--- a/test/mjsunit/get-prototype-of.js
+++ b/test/mjsunit/get-prototype-of.js
@@ -77,6 +77,7 @@
// Builtin constructors.
var functions = [
Array,
+ ArrayBuffer,
Boolean,
// DataView,
Date,
@@ -111,8 +112,5 @@
var p = new Promise(function() {});
assertPrototypeOf(p, Promise.prototype);
-var ab = new ArrayBuffer(0);
-assertPrototypeOf(ab, ArrayBuffer.prototype);
-
-var dv = new DataView(ab);
+var dv = new DataView(new ArrayBuffer());
assertPrototypeOf(dv, DataView.prototype);
« no previous file with comments | « test/mjsunit/es6/typedarray.js ('k') | test/mjsunit/harmony/reflect-get-prototype-of.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698