This commit is contained in:
pschwartau%netscape.com 2001-07-03 01:13:23 +00:00
Родитель 2efc9263ba
Коммит 33c273f62c
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

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