js/src/tests/js1_8_5/regress/regress-596805-2.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     2 /*
     3  * Any copyright is dedicated to the Public Domain.
     4  * http://creativecommons.org/licenses/publicdomain/
     5  */
     7 for each(let c in [0, 0, 0, 0, 0]) {
     8   try { (function() {
     9       this.c = this;
    10       this.e = arguments;
    11       Object.defineProperty(this, "d", {
    12         get: Math.pow,
    13         configurable: true
    14       });
    15       delete this.e;
    16       delete this.c;
    17       Object.defineProperty(this, "d", {
    18         writable: true
    19       });
    20       if (Math.tan( - 1)) {
    21         Object.defineProperty(this, {});
    22       }
    23     } (c));
    24   } catch(e) {}
    25 }
    27 reportCompare(0, 0, "ok");

mercurial