Title: [97441] trunk
Revision
97441
Author
[email protected]
Date
2011-10-13 22:12:32 -0700 (Thu, 13 Oct 2011)

Log Message

Spelling error in v8WebSocket::constructorCallback error
https://bugs.webkit.org/show_bug.cgi?id=63943

Reviewed by Kent Tamura.

Source/WebCore:

Fix typo.

* bindings/v8/custom/V8WebSocketCustom.cpp:
(WebCore::V8WebSocket::constructorCallback):

LayoutTests:

* platform/chromium/fast/dom/call-a-constructor-as-a-function-expected.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (97440 => 97441)


--- trunk/LayoutTests/ChangeLog	2011-10-14 05:08:29 UTC (rev 97440)
+++ trunk/LayoutTests/ChangeLog	2011-10-14 05:12:32 UTC (rev 97441)
@@ -1,5 +1,14 @@
 2011-10-13  Adam Barth  <[email protected]>
 
+        Spelling error in v8WebSocket::constructorCallback error
+        https://bugs.webkit.org/show_bug.cgi?id=63943
+
+        Reviewed by Kent Tamura.
+
+        * platform/chromium/fast/dom/call-a-constructor-as-a-function-expected.txt:
+
+2011-10-13  Adam Barth  <[email protected]>
+
         Add missing result.  Yes, it's supposed to be blank.
 
         * http/tests/security/contentSecurityPolicy/xsl-unaffected-by-style-src-1-expected.png: Added.

Modified: trunk/LayoutTests/platform/chromium/fast/dom/call-a-constructor-as-a-function-expected.txt (97440 => 97441)


--- trunk/LayoutTests/platform/chromium/fast/dom/call-a-constructor-as-a-function-expected.txt	2011-10-14 05:08:29 UTC (rev 97440)
+++ trunk/LayoutTests/platform/chromium/fast/dom/call-a-constructor-as-a-function-expected.txt	2011-10-14 05:12:32 UTC (rev 97441)
@@ -22,7 +22,7 @@
 PASS Uint8Array() threw exception TypeError: DOM object constructor cannot be called as a function..
 PASS WebKitCSSMatrix() threw exception TypeError: DOM object constructor cannot be called as a function..
 PASS WebKitPoint() threw exception TypeError: DOM object constructor cannot be called as a function..
-PASS WebSocket() threw exception TypeError: DOM object custructor cannot be called as a function..
+PASS WebSocket() threw exception TypeError: DOM object constructor cannot be called as a function..
 PASS Worker() threw exception TypeError: DOM object constructor cannot be called as a function..
 PASS XMLHttpRequest() threw exception TypeError: DOM object constructor cannot be called as a function..
 PASS XSLTProcessor() threw exception TypeError: DOM object constructor cannot be called as a function..

Modified: trunk/Source/WebCore/ChangeLog (97440 => 97441)


--- trunk/Source/WebCore/ChangeLog	2011-10-14 05:08:29 UTC (rev 97440)
+++ trunk/Source/WebCore/ChangeLog	2011-10-14 05:12:32 UTC (rev 97441)
@@ -1,3 +1,15 @@
+2011-10-13  Adam Barth  <[email protected]>
+
+        Spelling error in v8WebSocket::constructorCallback error
+        https://bugs.webkit.org/show_bug.cgi?id=63943
+
+        Reviewed by Kent Tamura.
+
+        Fix typo.
+
+        * bindings/v8/custom/V8WebSocketCustom.cpp:
+        (WebCore::V8WebSocket::constructorCallback):
+
 2011-10-13  Mark Hahnenberg  <[email protected]>
 
         Rename virtual getConstructData to getConstructDataVirtual

Modified: trunk/Source/WebCore/bindings/v8/custom/V8WebSocketCustom.cpp (97440 => 97441)


--- trunk/Source/WebCore/bindings/v8/custom/V8WebSocketCustom.cpp	2011-10-14 05:08:29 UTC (rev 97440)
+++ trunk/Source/WebCore/bindings/v8/custom/V8WebSocketCustom.cpp	2011-10-14 05:12:32 UTC (rev 97441)
@@ -56,7 +56,7 @@
     INC_STATS("DOM.WebSocket.Constructor");
 
     if (!args.IsConstructCall())
-        return throwError("DOM object custructor cannot be called as a function.", V8Proxy::TypeError);
+        return throwError("DOM object constructor cannot be called as a function.", V8Proxy::TypeError);
     if (args.Length() == 0)
         return throwError("Not enough arguments", V8Proxy::SyntaxError);
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to