summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/types/object/S8.6.1_A1.js
blob: 54ecf7df5d477c2aadb285ca66e427f7d3eeeb2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: A property can have attribute ReadOnly like E in Math
es5id: 8.6.1_A1
description: Try change Math.E property
flags: [noStrict]
---*/

var __e = Math.E;
Math.E=1;
if (Math.E !==__e){
  throw new Test262Error('#1: __e = Math.E; Math.E=1; Math.E ===__e');
}

reportCompare(0, 0);