Title: [108105] trunk/LayoutTests
Revision
108105
Author
[email protected]
Date
2012-02-17 12:05:07 -0800 (Fri, 17 Feb 2012)

Log Message

Case typo in fast/js/script-tests/date-constructor.js
https://bugs.webkit.org/show_bug.cgi?id=78898

Patch by Seo Sanghyeon <[email protected]> on 2012-02-17
Reviewed by Adam Barth.

* fast/js/script-tests/date-constructor.js: toSTring to toString

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (108104 => 108105)


--- trunk/LayoutTests/ChangeLog	2012-02-17 20:00:11 UTC (rev 108104)
+++ trunk/LayoutTests/ChangeLog	2012-02-17 20:05:07 UTC (rev 108105)
@@ -1,3 +1,12 @@
+2012-02-17  Seo Sanghyeon  <[email protected]>
+
+        Case typo in fast/js/script-tests/date-constructor.js
+        https://bugs.webkit.org/show_bug.cgi?id=78898
+
+        Reviewed by Adam Barth.
+
+        * fast/js/script-tests/date-constructor.js: toSTring to toString
+
 2012-02-17  Mihnea Ovidenie  <[email protected]>
 
         [CSSRegions]Implement NamedFlow::overflow

Modified: trunk/LayoutTests/fast/js/script-tests/date-constructor.js (108104 => 108105)


--- trunk/LayoutTests/fast/js/script-tests/date-constructor.js	2012-02-17 20:00:11 UTC (rev 108104)
+++ trunk/LayoutTests/fast/js/script-tests/date-constructor.js	2012-02-17 20:05:07 UTC (rev 108105)
@@ -6,7 +6,7 @@
 
 var object = new Object;
 object.valueOf = function() { return 1111; }
-object.toSTring = function() { return "2222"; }
+object.toString = function() { return "2222"; }
 
 shouldBe('isNaN(new Date(""))', 'true');
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to