CVSROOT: /sources/gnash Module name: gnash Changes by: Sandro Santilli <strk> 07/11/06 13:55:52
Modified files: . : ChangeLog testsuite/misc-ming.all: DrawingApiTest.as Log message: * testsuite/misc-ming.all/DrawingApiTest.as: add another interesting drawing in second drawing page (nested squares). CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4779&r2=1.4780 http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-ming.all/DrawingApiTest.as?cvsroot=gnash&r1=1.17&r2=1.18 Patches: Index: ChangeLog =================================================================== RCS file: /sources/gnash/gnash/ChangeLog,v retrieving revision 1.4779 retrieving revision 1.4780 diff -u -b -r1.4779 -r1.4780 --- ChangeLog 6 Nov 2007 13:25:37 -0000 1.4779 +++ ChangeLog 6 Nov 2007 13:55:51 -0000 1.4780 @@ -1,5 +1,7 @@ 2007-11-06 Sandro Santilli <[EMAIL PROTECTED]> + * testsuite/misc-ming.all/DrawingApiTest.as: add another interesting + drawing in second drawing page (nested squares). * testsuite/misc-ming.all/Makefile.am: MEDIADIR define must use absolute path (the local sandboxes check isn't ready for relative paths yet). Index: testsuite/misc-ming.all/DrawingApiTest.as =================================================================== RCS file: /sources/gnash/gnash/testsuite/misc-ming.all/DrawingApiTest.as,v retrieving revision 1.17 retrieving revision 1.18 diff -u -b -r1.17 -r1.18 --- testsuite/misc-ming.all/DrawingApiTest.as 6 Nov 2007 08:59:58 -0000 1.17 +++ testsuite/misc-ming.all/DrawingApiTest.as 6 Nov 2007 13:55:52 -0000 1.18 @@ -14,7 +14,7 @@ // Only page 1 have automatic testing so far. // -rcsid="$Id: DrawingApiTest.as,v 1.17 2007/11/06 08:59:58 strk Exp $"; +rcsid="$Id: DrawingApiTest.as,v 1.18 2007/11/06 13:55:52 strk Exp $"; #include "../actionscript.all/check.as" @@ -286,6 +286,29 @@ inv3._xscale = inv3._yscale = 400; inv3._y = 100; inv3.onRollOver = function() {}; + // Nested squares + createEmptyMovieClip("inv4", 4); + with (inv4) + { + lineStyle(1, 0); + beginFill(0x00FF00); + + moveTo(10, 10); + lineTo(10, 20); + lineTo(20, 20); + lineTo(20, 10); + lineTo(10, 10); + + moveTo(12, 12); + lineTo(12, 18); + lineTo(18, 18); + lineTo(18, 12); + lineTo(12, 12); + } + inv4._xscale = inv4._yscale = 400; + inv4._y = 100; inv4._x = 100; + inv4.onRollOver = function() {}; + _visible = false; } _______________________________________________ Gnash-commit mailing list Gnash-commit@gnu.org http://lists.gnu.org/mailman/listinfo/gnash-commit