Improving readability.

git-svn-id: svn://10.0.0.236/trunk@98511 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
pschwartau%netscape.com 2001-07-03 01:13:23 +00:00
parent 6b13738fe6
commit 5dfdd40cff

View File

@ -62,7 +62,7 @@ addThis();
// TEST 2
// TEST 2
function Car(make)
{
this.make = make;
@ -75,14 +75,15 @@ function Car(make)
}
}
var myCar = new Car(cnMake);
myCar.paint();
var myCar = new Car(cnMake);
status = 'Section 3 of test';
actual = myCar.make;
expect = cnMake;
addThis();
myCar.paint();
status = 'Section 4 of test';
actual = myCar.color;
expect = cnColor;