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


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog testsuite/actionscript.all/toSt...
Date: Tue, 01 Apr 2008 09:29:10 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  08/04/01 09:29:10

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

Log message:
        xpass leftovers from implementation of Button class.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6134&r2=1.6135
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/toString_valueOf.as?cvsroot=gnash&r1=1.31&r2=1.32

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6134
retrieving revision 1.6135
diff -u -b -r1.6134 -r1.6135
--- ChangeLog   1 Apr 2008 09:26:53 -0000       1.6134
+++ ChangeLog   1 Apr 2008 09:29:09 -0000       1.6135
@@ -1,5 +1,10 @@
 2008-04-01 Sandro Santilli <address@hidden>
 
+       * testsuite/actionscript.all/toString_valueOf.as: xpass leftovers
+         from implementation of Button class.
+
+2008-04-01 Sandro Santilli <address@hidden>
+
        * server/asobj/xmlsocket.cpp: onData is a prototype (not instance)
          member, and has weird inheritance as shown by swfdec testsuite.
        * testsuite/actionscript.all/XMLSocket.as: onData is a prototype (not

Index: testsuite/actionscript.all/toString_valueOf.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/toString_valueOf.as,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -b -r1.31 -r1.32
--- testsuite/actionscript.all/toString_valueOf.as      11 Mar 2008 19:31:49 
-0000      1.31
+++ testsuite/actionscript.all/toString_valueOf.as      1 Apr 2008 09:29:10 
-0000       1.32
@@ -22,7 +22,7 @@
 
 
 
-rcsid="$Id: toString_valueOf.as,v 1.31 2008/03/11 19:31:49 strk Exp $";
+rcsid="$Id: toString_valueOf.as,v 1.32 2008/04/01 09:29:10 strk Exp $";
 #include "check.as"
 
 //
@@ -336,8 +336,8 @@
 check(!Button.prototype.hasOwnProperty('valueOf'));
 #endif
 
-xcheck_equals(typeof(Button.prototype.toString), 'function' );
-xcheck_equals(typeof(Button.prototype.valueOf), 'function' );
+check_equals(typeof(Button.prototype.toString), 'function' );
+check_equals(typeof(Button.prototype.valueOf), 'function' );
 
 // For Buttons, this true from swf5~swf8!
 #if OUTPUT_VERSION < 6
@@ -346,20 +346,20 @@
  check_equals(Button.prototype.toString, undefined);
  check_equals(Button.prototype.valueOf, undefined);
 #else
- xcheck_equals(Button.prototype.toString, Object.prototype.toString);
- xcheck_equals(Button.prototype.valueOf, Object.prototype.valueOf);
+ check_equals(Button.prototype.toString, Object.prototype.toString);
+ check_equals(Button.prototype.valueOf, Object.prototype.valueOf);
 #endif
 
 btn1 = new Button();
-xcheck_equals(typeof(btn1), "object");
+check_equals(typeof(btn1), "object");
 x = btn1.toString();
 y = btn1.valueOf();
-xcheck_equals(typeof(x), "string");  
-xcheck_equals(typeof(y), "object");   
-xcheck_equals(x, "[object Object]");  
-xcheck_equals(y.toString(), "[object Object]"); 
-xcheck_equals(typeof(y.valueOf()), "object");  
-xcheck_equals(typeof(btn1), "object");
+check_equals(typeof(x), "string");  
+check_equals(typeof(y), "object");   
+check_equals(x, "[object Object]");  
+check_equals(y.toString(), "[object Object]"); 
+check_equals(typeof(y.valueOf()), "object");  
+check_equals(typeof(btn1), "object");
 check(y == btn1);
 //trace(btn1); // invoke btn1.toString(), output [object Object]
 




reply via email to

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