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

Unified Diff: test/mjsunit/harmony/proxies-function.js

Issue 131663003: Make the strict-mode calling convention for contextual calls the default one. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix arm port Created 6 years, 11 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 | « test/mjsunit/harmony/object-observe.js ('k') | test/mjsunit/regress/regress-2758.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/harmony/proxies-function.js
diff --git a/test/mjsunit/harmony/proxies-function.js b/test/mjsunit/harmony/proxies-function.js
index 8c91e9ba9ef12fdec6cbb00b69216b63c6981973..7b07d424236ff4c30b233ce3238e3cea55f1f90f 100644
--- a/test/mjsunit/harmony/proxies-function.js
+++ b/test/mjsunit/harmony/proxies-function.js
@@ -763,8 +763,8 @@ for (var i = 0; i < 10; i++) {
assertEquals(Realm.shared.gg, gp());
with (this) {
- assertEquals(Realm.shared.fg, fp());
- assertEquals(Realm.shared.gg, gp());
+ assertEquals(this, fp());
+ assertEquals(this, gp());
}
with ({}) {
« no previous file with comments | « test/mjsunit/harmony/object-observe.js ('k') | test/mjsunit/regress/regress-2758.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698