gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] /srv/bzr/gnash/trunk r11238: Test that TextField.multilin


From: Sandro Santilli
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r11238: Test that TextField.multiline is always converted to boolean on set
Date: Thu, 09 Jul 2009 11:40:13 +0200
User-agent: Bazaar (1.13.1)

------------------------------------------------------------
revno: 11238
committer: Sandro Santilli <address@hidden>
branch nick: trunk
timestamp: Thu 2009-07-09 11:40:13 +0200
message:
  Test that TextField.multiline is always converted to boolean on set
modified:
  testsuite/actionscript.all/TextField.as
=== modified file 'testsuite/actionscript.all/TextField.as'
--- a/testsuite/actionscript.all/TextField.as   2009-02-25 22:33:03 +0000
+++ b/testsuite/actionscript.all/TextField.as   2009-07-09 09:40:13 +0000
@@ -408,6 +408,8 @@
 check_equals(tf.multiline, false);
 tf.multiline = true;
 check_equals(tf.multiline, true);
+tf.multiline = 54;
+check_equals(typeof(tf.multiline), 'boolean'); // always converted
 tf.multiline = false;
 
 //-------------------------------------------------------------------------
@@ -1070,11 +1072,11 @@
 //------------------------------------------------------------
 
 #if OUTPUT_VERSION == 6
- check_totals(464);
+ check_totals(465);
 #elif OUTPUT_VERSION == 7
- check_totals(467);
+ check_totals(468);
 #elif OUTPUT_VERSION == 8
- check_totals(468);
+ check_totals(469);
 #endif
 
 #endif


reply via email to

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