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/Movi...


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog testsuite/actionscript.all/Movi...
Date: Fri, 02 Feb 2007 12:57:51 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/02/02 12:57:51

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

Log message:
                * testsuite/actionscript.all/MovieClip.as: add a few more checks
                  for properties.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.2232&r2=1.2233
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/MovieClip.as?cvsroot=gnash&r1=1.29&r2=1.30

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.2232
retrieving revision 1.2233
diff -u -b -r1.2232 -r1.2233
--- ChangeLog   2 Feb 2007 11:36:57 -0000       1.2232
+++ ChangeLog   2 Feb 2007 12:57:50 -0000       1.2233
@@ -1,5 +1,7 @@
 2007-02-02 Sandro Santilli <address@hidden>
 
+       * testsuite/actionscript.all/MovieClip.as: add a few more checks
+         for properties.
        * testsuite/actionscript.all/Inheritance.as: don't expect
          failures with Date object; add a test about constructors
          calling order.

Index: testsuite/actionscript.all/MovieClip.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/MovieClip.as,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -b -r1.29 -r1.30
--- testsuite/actionscript.all/MovieClip.as     23 Jan 2007 22:44:32 -0000      
1.29
+++ testsuite/actionscript.all/MovieClip.as     2 Feb 2007 12:57:51 -0000       
1.30
@@ -22,7 +22,7 @@
 // compile this test case with Ming makeswf, and then
 // execute it like this gnash -1 -r 0 -v out.swf
 
-rcsid="$Id: MovieClip.as,v 1.29 2007/01/23 22:44:32 strk Exp $";
+rcsid="$Id: MovieClip.as,v 1.30 2007/02/02 12:57:51 strk Exp $";
 
 #include "check.as"
 
@@ -39,6 +39,9 @@
 // Check inheritance
 check(MovieClip);
 check_equals(mc.__proto__, MovieClip.prototype);
+check_equals(typeof(MovieClip.prototype._width), "undefined");
+check_equals(typeof(MovieClip.prototype.attachMovie), "function");
+check_equals(typeof(mc._width), "number");
 
 // Check methods existance
 
@@ -274,3 +277,5 @@
 check(cl instanceOf MovieClip);
 xcheck(cl instanceOf Object);
 check_equals(typeof(cl), "object");
+check_equals(typeof(cl.attachMovie), "function");
+check_equals(typeof(cl._width), "undefined");




reply via email to

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