Title: [92984] trunk/Tools
Revision
92984
Author
[email protected]
Date
2011-08-12 13:18:51 -0700 (Fri, 12 Aug 2011)

Log Message

allowRoundingHacksCallback uses the wrong argument for 'thisObject'.
https://bugs.webkit.org/show_bug.cgi?id=66158

Reviewed by Dan Bernstein.

* DumpRenderTree/LayoutTestController.cpp:
(allowRoundingHacksCallback): The third argument is the 'this'
JSObjectRef, not the second.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (92983 => 92984)


--- trunk/Tools/ChangeLog	2011-08-12 20:16:10 UTC (rev 92983)
+++ trunk/Tools/ChangeLog	2011-08-12 20:18:51 UTC (rev 92984)
@@ -1,5 +1,16 @@
 2011-08-12  Andy Estes  <[email protected]>
 
+        allowRoundingHacksCallback uses the wrong argument for 'thisObject'.
+        https://bugs.webkit.org/show_bug.cgi?id=66158
+
+        Reviewed by Dan Bernstein.
+
+        * DumpRenderTree/LayoutTestController.cpp:
+        (allowRoundingHacksCallback): The third argument is the 'this'
+        JSObjectRef, not the second.
+
+2011-08-12  Andy Estes  <[email protected]>
+
         Cancel in onbeforeunload dialog sometime causes a button to stop working.
         https://bugs.webkit.org/show_bug.cgi?id=26211
 

Modified: trunk/Tools/DumpRenderTree/LayoutTestController.cpp (92983 => 92984)


--- trunk/Tools/DumpRenderTree/LayoutTestController.cpp	2011-08-12 20:16:10 UTC (rev 92983)
+++ trunk/Tools/DumpRenderTree/LayoutTestController.cpp	2011-08-12 20:18:51 UTC (rev 92984)
@@ -2133,7 +2133,7 @@
     return JSValueMakeUndefined(context);
 }
 
-static JSValueRef allowRoundingHacksCallback(JSContextRef context, JSObjectRef thisObject, JSObjectRef, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
+static JSValueRef allowRoundingHacksCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
 {
     LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject));
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to