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/XML.as


From: Benjamin Wolsey
Subject: [Gnash-commit] gnash ChangeLog testsuite/actionscript.all/XML.as
Date: Tue, 13 Nov 2007 12:45:43 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Benjamin Wolsey <bwy>   07/11/13 12:45:43

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

Log message:
        Test whether XML node values are set. They aren't. Fixing this could 
mend quite a lot of movies immediately (unless of course there are other 
bugs...)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4843&r2=1.4844
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/XML.as?cvsroot=gnash&r1=1.44&r2=1.45

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.4843
retrieving revision 1.4844
diff -u -b -r1.4843 -r1.4844
--- ChangeLog   13 Nov 2007 11:36:38 -0000      1.4843
+++ ChangeLog   13 Nov 2007 12:45:42 -0000      1.4844
@@ -1,3 +1,8 @@
+2007-11-13 Benjamin Wolsey <address@hidden>
+
+       * testsuite/actionscript.all/XML.as: add first(!) test to check
+         whether XML nodeValues are set. Gnash fails (always null).
+         
 2007-11-13 Sandro Santilli <address@hidden>
 
        * testsuite/misc-swfc.all/action_execution_order_test10.sc:

Index: testsuite/actionscript.all/XML.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/XML.as,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -b -r1.44 -r1.45
--- testsuite/actionscript.all/XML.as   23 Oct 2007 17:01:32 -0000      1.44
+++ testsuite/actionscript.all/XML.as   13 Nov 2007 12:45:42 -0000      1.45
@@ -20,7 +20,7 @@
 // compile this test case with Ming makeswf, and then
 // execute it like this gnash -1 -r 0 -v out.swf
 
-rcsid="$Id: XML.as,v 1.44 2007/10/23 17:01:32 strk Exp $";
+rcsid="$Id: XML.as,v 1.45 2007/11/13 12:45:42 bwy Exp $";
 
 #include "check.as"
 //#include "dejagnu.as"
@@ -351,10 +351,12 @@
                        with (firstChild)
                        {
                                check_equals(nodeName, 'SUBSUBNODE1');
+                               xcheck_equals(nodeValue, 'sub sub1 node data 
1');
                                check_equals(typeof(nodeValue), 'null');
                                check_equals(nodeType, 1); // element
                                check_equals(typeof(nextSibling), 'object');
                                check_equals(nextSibling.nodeName, 
'SUBSUBNODE2');
+                               xcheck_equals(nextSibling.nodeValue, 'sub sub1 
node data 2');
                                check_equals(typeof(previousSibling), 'null');
                                check_equals(typeof(attributes), 'object');
                                check_equals(attributes.ssna1, 'ssna1val');




reply via email to

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