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


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog testsuite/actionscript.all/Vide...
Date: Wed, 22 Nov 2006 13:05:38 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  06/11/22 13:05:38

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

Log message:
        * testsuite/actionscript.all/Video.as:
          attach => attachVideo, expect Video
          class to non exist with SWF < 6

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.1707&r2=1.1708
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/Video.as?cvsroot=gnash&r1=1.6&r2=1.7

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.1707
retrieving revision 1.1708
diff -u -b -r1.1707 -r1.1708
--- ChangeLog   22 Nov 2006 12:02:49 -0000      1.1707
+++ ChangeLog   22 Nov 2006 13:05:37 -0000      1.1708
@@ -1,3 +1,9 @@
+2006-11-22 Sandro Santilli <address@hidden>
+
+       * testsuite/actionscript.all/Video.as:
+         attach => attachVideo, expect Video
+         class to non exist with SWF < 6
+
 2006-11-22 Bastiaan Jacques <address@hidden>
 
        * libbase/sharedlib.cpp: getcwd() should be passed a buffer of 

Index: testsuite/actionscript.all/Video.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/Video.as,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- testsuite/actionscript.all/Video.as 5 Nov 2006 00:45:27 -0000       1.6
+++ testsuite/actionscript.all/Video.as 22 Nov 2006 13:05:38 -0000      1.7
@@ -20,16 +20,26 @@
 // compile this test case with Ming makeswf, and then
 // execute it like this gnash -1 -r 0 -v out.swf
 
-rcsid="$Id: Video.as,v 1.6 2006/11/05 00:45:27 rsavoye Exp $";
+rcsid="$Id: Video.as,v 1.7 2006/11/22 13:05:38 strk Exp $";
 
 #include "check.as"
 
+#if OUTPUT_VERSION < 6
+
+xcheck_equals(Video, undefined);
+
+#else
+
+check(Video);
+
 var videoObj = new Video;
 
 // test the Video constuctor
 check (videoObj != undefined);
 
-// test the Video::attach method
-check (videoObj.attach != undefined);
+// test the Video::attachVideo method
+check (videoObj.attachVideo != undefined);
 // test the Video::clear method
 check (videoObj.clear != undefined);
+
+#endif




reply via email to

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