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


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog testsuite/actionscript.all/Text...
Date: Fri, 11 Apr 2008 12:08:40 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  08/04/11 12:08:40

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

Log message:
        success in indent and blockIndent tests.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6255&r2=1.6256
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/TextFormat.as?cvsroot=gnash&r1=1.2&r2=1.3

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6255
retrieving revision 1.6256
diff -u -b -r1.6255 -r1.6256
--- ChangeLog   11 Apr 2008 11:25:22 -0000      1.6255
+++ ChangeLog   11 Apr 2008 12:08:39 -0000      1.6256
@@ -1,5 +1,10 @@
 2008-04-11 Sandro Santilli <address@hidden>
 
+       * testsuite/actionscript.all/TextFormat.as: success in indent
+         and blockIndent tests.
+
+2008-04-11 Sandro Santilli <address@hidden>
+
        * server/text.h: don't forget to initialize
          the _underline member.
        * server/text.cpp (display_glyph_records): don't reset

Index: testsuite/actionscript.all/TextFormat.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/TextFormat.as,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- testsuite/actionscript.all/TextFormat.as    10 Apr 2008 15:33:19 -0000      
1.2
+++ testsuite/actionscript.all/TextFormat.as    11 Apr 2008 12:08:39 -0000      
1.3
@@ -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: TextFormat.as,v 1.2 2008/04/10 15:33:19 strk Exp $";
+rcsid="$Id: TextFormat.as,v 1.3 2008/04/11 12:08:39 strk Exp $";
 
 #include "check.as"
 
@@ -62,13 +62,13 @@
 xcheck_equals(tfObj.display, 'block');
 xcheck_equals(typeof(tfObj.bullet), 'null');
 xcheck_equals(typeof(tfObj.tabStops), 'null');
-xcheck_equals(typeof(tfObj.blockIndent), 'null');
+check_equals(typeof(tfObj.blockIndent), 'null');
 check_equals(typeof(tfObj.leading), 'null');
 check_equals(typeof(tfObj.indent), 'null');
 check_equals(typeof(tfObj.rightMargin), 'null');
 check_equals(typeof(tfObj.leftMargin), 'null');
 check_equals(typeof(tfObj.align), 'null');
-xcheck_equals(typeof(tfObj.underline), 'null');
+check_equals(typeof(tfObj.underline), 'null');
 check_equals(typeof(tfObj.italic), 'null');
 check_equals(typeof(tfObj.bold), 'null');
 xcheck_equals(typeof(tfObj.target), 'null');
@@ -84,7 +84,7 @@
 xcheck_equals(tfObj.display, 'block');
 xcheck_equals(typeof(tfObj.bullet), 'null');
 xcheck_equals(typeof(tfObj.tabStops), 'null');
-xcheck_equals(typeof(tfObj.blockIndent), 'null');
+check_equals(typeof(tfObj.blockIndent), 'null');
 check_equals(tfObj.leading, 4);
 check_equals(tfObj.indent, 12);
 check_equals(typeof(tfObj.rightMargin), 'number'); // even if we passed a 
string to it
@@ -94,7 +94,7 @@
 check_equals(tfObj.align, 'center');
 xcheck_equals(tfObj.target, 'tgt');
 xcheck_equals(tfObj.url, 'http');
-xcheck_equals(tfObj.underline, true);
+check_equals(tfObj.underline, true);
 check_equals(typeof(tfObj.italic), 'boolean');
 check_equals(tfObj.italic, false);
 check_equals(tfObj.bold, true);




reply via email to

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