gnash-commit
[Top][All Lists]
Advanced

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

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


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog testsuite/misc-swfc.all/action_...
Date: Tue, 13 Nov 2007 11:36:39 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/11/13 11:36:39

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

Log message:
        Add a couple of (failing) tests and two lines of documentation (this 
test needs more documentation)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4842&r2=1.4843
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-swfc.all/action_execution_order_test10.sc?cvsroot=gnash&r1=1.7&r2=1.8

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.4842
retrieving revision 1.4843
diff -u -b -r1.4842 -r1.4843
--- ChangeLog   13 Nov 2007 08:43:43 -0000      1.4842
+++ ChangeLog   13 Nov 2007 11:36:38 -0000      1.4843
@@ -1,3 +1,9 @@
+2007-11-13 Sandro Santilli <address@hidden>
+
+       * testsuite/misc-swfc.all/action_execution_order_test10.sc:
+         Add a couple of (failing) tests and two lines of documentation
+         (this test needs more documentation)
+
 2007-11-13 Zou Lunkai <address@hidden>
 
        * server/asobj/Key.cpp: use new interface of get_member, fix compiling

Index: testsuite/misc-swfc.all/action_execution_order_test10.sc
===================================================================
RCS file: 
/sources/gnash/gnash/testsuite/misc-swfc.all/action_execution_order_test10.sc,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- testsuite/misc-swfc.all/action_execution_order_test10.sc    26 Sep 2007 
21:03:02 -0000      1.7
+++ testsuite/misc-swfc.all/action_execution_order_test10.sc    13 Nov 2007 
11:36:39 -0000      1.8
@@ -35,6 +35,11 @@
  *          delete mc2 by RemoveObject2.
  *          DoAction.
  * 
+ *  frame8:
+ *          PlaceObject(mc4), DoInitAction(mc4):
+ *               - mc4.__proto__ is Object, not MovieClip during init actions
+ *               - onInitialize(mc4) isn't called 
+ *               - other things to note ?
  *
  * Expected behaviour:
  *    (1) user defined onContruct should not be triggered.
@@ -176,6 +181,10 @@
   .initaction mc4:
     _root.mc4_onConstruct_executed = false;
     
+    _root.note("mc4 init actions"); 
+    _root.xcheck_equals(typeof(mc4), 'movieclip');
+    _root.xcheck_equals(mc4.__proto__, Object.prototype);
+    
     mc4.onInitialize = function () { 
       _root.note("mc4 user defined onInitialize"); 
       _root.check(false); // should not be executed
@@ -215,7 +224,7 @@
 
 .frame 15
   .action:
-    totals(5);
+    totals(7);
     stop();
   .end
   




reply via email to

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