~ubuntu-branches/ubuntu/trusty/mozjs24/trusty-proposed

« back to all changes in this revision

Viewing changes to js/src/tests/ecma_5/Object/15.2.3.6-define-over-method.js

  • Committer: Package Import Robot
  • Author(s): Tim Lunn
  • Date: 2014-02-11 21:55:34 UTC
  • Revision ID: package-import@ubuntu.com-20140211215534-m1zyq5aj59md3y07
Tags: upstream-24.2.0
ImportĀ upstreamĀ versionĀ 24.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Any copyright is dedicated to the Public Domain.
 
2
// http://creativecommons.org/licenses/publicdomain/
 
3
 
 
4
//-----------------------------------------------------------------------------
 
5
var BUGNUMBER = 568786;
 
6
var summary =
 
7
  'Do not assert: !(attrs & (JSPROP_GETTER | JSPROP_SETTER)) with ' +
 
8
  'Object.defineProperty';
 
9
 
 
10
print(BUGNUMBER + ": " + summary);
 
11
 
 
12
/**************
 
13
 * BEGIN TEST *
 
14
 **************/
 
15
 
 
16
var o = { x: function(){} };
 
17
Object.defineProperty(o, "x", { get: function(){} });
 
18
 
 
19
/******************************************************************************/
 
20
 
 
21
if (typeof reportCompare === "function")
 
22
  reportCompare(true, true);
 
23
 
 
24
print("All tests passed!");