Title: [96204] trunk/LayoutTests
Revision
96204
Author
[email protected]
Date
2011-09-28 01:21:05 -0700 (Wed, 28 Sep 2011)

Log Message

fast/canvas/crash-set-font.html failing on all platform because
getCSSCanvasContext needs 4 parameters
https://bugs.webkit.org/show_bug.cgi?id=66291

Reviewed by Csaba Osztrogonác.

* fast/canvas/crash-set-font.html: adding the fourth parameter

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (96203 => 96204)


--- trunk/LayoutTests/ChangeLog	2011-09-28 08:06:48 UTC (rev 96203)
+++ trunk/LayoutTests/ChangeLog	2011-09-28 08:21:05 UTC (rev 96204)
@@ -1,3 +1,13 @@
+2011-09-28  Gabor Rapcsanyi  <[email protected]>
+
+        fast/canvas/crash-set-font.html failing on all platform because
+        getCSSCanvasContext needs 4 parameters
+        https://bugs.webkit.org/show_bug.cgi?id=66291
+
+        Reviewed by Csaba Osztrogonác.
+
+        * fast/canvas/crash-set-font.html: adding the fourth parameter
+
 2011-09-28  Shinichiro Hamaji  <[email protected]>
 
         [Chromium] Layout Test fast/canvas/canvas-composite-transformclip.html is failing

Modified: trunk/LayoutTests/fast/canvas/crash-set-font.html (96203 => 96204)


--- trunk/LayoutTests/fast/canvas/crash-set-font.html	2011-09-28 08:06:48 UTC (rev 96203)
+++ trunk/LayoutTests/fast/canvas/crash-set-font.html	2011-09-28 08:21:05 UTC (rev 96204)
@@ -5,7 +5,7 @@
         if (window.layoutTestController)
             layoutTestController.dumpAsText();
 
-        oContext2d = document.getCSSCanvasContext("2d","",0);
+        oContext2d = document.getCSSCanvasContext("2d","",0,0);
         oContext2d.font = "small-caps .0ex G";
         oContext2d.font = "italic .0ex G";
         oContext2d.font = "italic 400 .0ex G";
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to