in-001.js (729B)
1 /* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ 2 /* This Source Code Form is subject to the terms of the Mozilla Public 3 * License, v. 2.0. If a copy of the MPL was not distributed with this 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 5 6 7 /** 8 File Name: in-001.js 9 Section: 10 Description: 11 12 http://scopus.mcom.com/bugsplat/show_bug.cgi?id=196109 13 14 15 Author: christine@netscape.com 16 Date: 12 november 1997 17 */ 18 var SECTION = "in-001"; 19 var TITLE = "Regression test for 196109"; 20 var BUGNUMBER="196109"; 21 22 printBugNumber(BUGNUMBER); 23 writeHeaderToLog( SECTION + " "+ TITLE); 24 25 o = {}; 26 o.foo = 'sil'; 27 28 new TestCase( 29 "\"foo\" in o", 30 true, 31 "foo" in o ); 32 33 test();