gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog testsuite/actionscript.all/Mous...


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog testsuite/actionscript.all/Mous...
Date: Wed, 22 Nov 2006 10:19:07 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  06/11/22 10:19:06

Modified files:
        .              : ChangeLog 
        testsuite/actionscript.all: Mouse.as 

Log message:
                * testsuite/actionscript.all/Mouse.as: instantiation
                  should not be allowed (probably).

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.1701&r2=1.1702
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/Mouse.as?cvsroot=gnash&r1=1.6&r2=1.7

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.1701
retrieving revision 1.1702
diff -u -b -r1.1701 -r1.1702
--- ChangeLog   22 Nov 2006 10:15:14 -0000      1.1701
+++ ChangeLog   22 Nov 2006 10:19:06 -0000      1.1702
@@ -1,5 +1,7 @@
 2006-11-21 Sandro Santilli <address@hidden>
 
+       * testsuite/actionscript.all/Mouse.as: instantiation
+         should not be allowed (probably).
        * testsuite/actionscript.all/Microphone.as: updated to
          properly check the get() method.
        * testsuite/actionscript.all/Date.as: check UTC to be

Index: testsuite/actionscript.all/Mouse.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/Mouse.as,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- testsuite/actionscript.all/Mouse.as 5 Nov 2006 00:45:27 -0000       1.6
+++ testsuite/actionscript.all/Mouse.as 22 Nov 2006 10:19:06 -0000      1.7
@@ -20,20 +20,19 @@
 // compile this test case with Ming makeswf, and then
 // execute it like this gnash -1 -r 0 -v out.swf
 
-rcsid="$Id: Mouse.as,v 1.6 2006/11/05 00:45:27 rsavoye Exp $";
+rcsid="$Id: Mouse.as,v 1.7 2006/11/22 10:19:06 strk Exp $";
 
 #include "check.as"
 
+// Mouse object can't be instanciated !
 var mouseObj = new Mouse;
-
-// test the Mouse constuctor
-check (mouseObj != undefined);
+xcheck_equals(mouseObj, undefined);
 
 // test the Mouse::addlistener method
-check (mouseObj.addlistener != undefined);
+check (Mouse.addlistener != undefined);
 // test the Mouse::hide method
-check (mouseObj.hide != undefined);
+check (Mouse.hide != undefined);
 // test the Mouse::removelistener method
-check (mouseObj.removelistener != undefined);
+check (Mouse.removelistener != undefined);
 // test the Mouse::show method
-check (mouseObj.show != undefined);
+check (Mouse.show != undefined);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]