From 62eebb4ebc87dd3aecd62e0805344febb05deb7c Mon Sep 17 00:00:00 2001 From: "pschwartau%netscape.com" Date: Thu, 17 Oct 2002 19:25:40 +0000 Subject: [PATCH] Whitespace cleanup. git-svn-id: svn://10.0.0.236/trunk@132160 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/js/tests/js1_5/Scope/scope-001.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/mozilla/js/tests/js1_5/Scope/scope-001.js b/mozilla/js/tests/js1_5/Scope/scope-001.js index 7e03dbcb9e7..7b3cb020968 100644 --- a/mozilla/js/tests/js1_5/Scope/scope-001.js +++ b/mozilla/js/tests/js1_5/Scope/scope-001.js @@ -19,18 +19,18 @@ * Contributor(s): pschwartau@netscape.com * * -*The idea behind bug 53268 is as follows. The item 'five' below is defined -*as a const, hence is a read-only property of the global object. So if we set +* The idea behind bug 53268 is as follows. The item 'five' below is defined +* as const, hence is a read-only property of the global object. So if we set * obj.__proto__ = this, 'five' should become a read-only propery of obj. * -*If we then change obj.__proto__ to null, obj.five should initially be -*undefined. We should be able to define obj.five to whatever we want, -*and be able to access this value as obj.five. +* If we then change obj.__proto__ to null, obj.five should initially be +* undefined. We should be able to define obj.five to whatever we want, +* and be able to access this value as obj.five. * -*Bug 53268 was filed because obj.five could not be set or accessed after -*obj.__proto__ had been set to the global object and then to null. +* Bug 53268 was filed because obj.five could not be set or accessed after +* obj.__proto__ had been set to the global object and then to null. */ -//------------------------------------------------------------------------------------------------- +//----------------------------------------------------------------------------- var bug = '53268'; var status = 'Testing scope after changing obj.__proto__'; var expect= ''; @@ -39,9 +39,9 @@ var obj = {}; const five = 5; -//------------------------------------------------------------------------------------------------- +//----------------------------------------------------------------------------- test(); -//------------------------------------------------------------------------------------------------- +//----------------------------------------------------------------------------- function test()