Bug 558541 - Add a test. r=jorendorff

This commit is contained in:
Jeff Walden 2010-04-19 17:40:13 -07:00
parent 5d2018797b
commit 9f2ea56274
2 changed files with 13 additions and 0 deletions

View File

@ -8,6 +8,7 @@ skip-if(!xulRuntime.shell) script worker-init.js
skip-if(!xulRuntime.shell) script worker-simple.js skip-if(!xulRuntime.shell) script worker-simple.js
skip-if(!xulRuntime.shell) script worker-terminate.js skip-if(!xulRuntime.shell) script worker-terminate.js
skip-if(!xulRuntime.shell) script worker-timeout.js skip-if(!xulRuntime.shell) script worker-timeout.js
script regress-558541.js
script scripted-proxies.js script scripted-proxies.js
script watch-undefined-setter.js script watch-undefined-setter.js
script array-length-protochange.js script array-length-protochange.js

View File

@ -0,0 +1,12 @@
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
* Contributor: Jeff Walden <jwalden+code@mit.edu>
*/
options("strict");
for (var i = 0; i < 5; i++)
Boolean.prototype = 42;
reportCompare(true, true);