- From: <bugzilla@jessica.w3.org>
- Date: Mon, 03 May 2010 15:35:16 +0000
- To: www-svg@w3.org
http://www.w3.org/Bugs/Public/show_bug.cgi?id=9648 --- Comment #1 from Damien Lespiau <damien.lespiau@intel.com> 2010-05-03 15:35:16 --- In the same file but a little further (I reached that point now that my SVGTimer implementation actually does something), another variable is not defined: diff --git a/tests/dom_animate.svg b/tests/dom_animate.svg index 77b7b44..ee2d33f 100644 --- a/tests/dom_animate.svg +++ b/tests/dom_animate.svg @@ -33,7 +33,7 @@ function showAndGrowElement() { timeValue += timerIncrement; // Scale the text string gradually until it is 20 times larger - scalefactor = (timeValue * 20) / maxTime; + var scalefactor = (timeValue * 20) / maxTime; var matrix = svgRoot.createSVGMatrixComponents(scalefactor, 0, 0, scalef textElement.setMatrixTrait("transform", matrix); // Make the string more opaque -- Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug.
Received on Monday, 3 May 2010 15:35:18 UTC