gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash/testsuite/misc-swfc.all action_execution_...


From: Zou Lunkai
Subject: [Gnash-commit] gnash/testsuite/misc-swfc.all action_execution_...
Date: Thu, 06 Sep 2007 07:14:24 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Zou Lunkai <zoulunkai>  07/09/06 07:14:24

Modified files:
        testsuite/misc-swfc.all: action_execution_order_test10.sc 

Log message:
        fix a bogus actions order test, thanks strk.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-swfc.all/action_execution_order_test10.sc?cvsroot=gnash&r1=1.1&r2=1.2

Patches:
Index: action_execution_order_test10.sc
===================================================================
RCS file: 
/sources/gnash/gnash/testsuite/misc-swfc.all/action_execution_order_test10.sc,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- action_execution_order_test10.sc    2 Sep 2007 07:26:30 -0000       1.1
+++ action_execution_order_test10.sc    6 Sep 2007 07:14:24 -0000       1.2
@@ -90,7 +90,7 @@
     mc2.onLoad = function () {_root.as_order += 'YY+';};
     
     mc1.onUnload = function () {_root.as_order += '7+';};
-    mc2.onUnload = function () {_root.as_order += '8+';};
+    mc2.onUnload = function () {_root.as_order += '9+';};
     
     _root.as_order += "1+";
   .end
@@ -116,7 +116,7 @@
   .del mc1 // delete mc1 by RemoveObject2
 
   .action:
-    _root.as_order += "9+";
+    _root.as_order += "8+";
   .end
   
   .del mc2 // delete mc2 by RemoveObject2
@@ -128,6 +128,7 @@
 .frame 6
   .action:
     xcheck_equals(_root.as_order, '0+1+2+3+4+5+6+7+8+9+10+');
+    _root.note(_root.as_order);
     totals();
     stop();
   .end




reply via email to

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