Reviewed by Darin.
http://bugzilla.opendarwin.org/show_bug.cgi?id=10167
Bug 10167: REGRESSION(r15688): ASSERTION FAILED: _private->mouseDownEvent != nil in layout tests
* fast/events/objc-event-api-expected.txt: Update test results.
WebKitTools:
Reviewed by Darin.
http://bugzilla.opendarwin.org/show_bug.cgi?id=10167
Bug 10167: REGRESSION(r15688): ASSERTION FAILED: _private->mouseDownEvent != nil in layout tests
* DumpRenderTree/EventSendingController.m: Don't set the mouse down flag
in keyDown handler.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@15707
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-07-31 Mark Rowe <opendarwin.org@bdash.net.nz>
+
+ Reviewed by Darin.
+
+ http://bugzilla.opendarwin.org/show_bug.cgi?id=10167
+ Bug 10167: REGRESSION(r15688): ASSERTION FAILED: _private->mouseDownEvent != nil in layout tests
+
+ * fast/events/objc-event-api-expected.txt: Update test results.
+
2006-07-31 Darin Adler <darin@apple.com>
* editing/pasteboard/paste-table-002-expected.txt: Corrected one result
clientX: 1
clientY: 1
modifier keys: c:0 s:0 a:0 m:0
+event type: mouseout
+ target: <html>
+ eventPhase: 3
+ bubbles: 1
+ cancelable: 1
+ detail: 0
+ view: OK (document: OK)
+ button: 0
+ screenX: 0
+ screenY: 0 (flipped)
+ clientX: -1
+ clientY: 601
+ modifier keys: c:0 s:0 a:0 m:0
Test
This tests that DOMEvents are correctly handed to the ObjC API. See bug 9181.
+2006-07-31 Mark Rowe <opendarwin.org@bdash.net.nz>
+
+ Reviewed by Darin.
+
+ http://bugzilla.opendarwin.org/show_bug.cgi?id=10167
+ Bug 10167: REGRESSION(r15688): ASSERTION FAILED: _private->mouseDownEvent != nil in layout tests
+
+ * DumpRenderTree/EventSendingController.m: Don't set the mouse down flag
+ in keyDown handler.
+
2006-07-30 Mark Rowe <opendarwin.org@bdash.net.nz>
Reviewed by Maciej.
NSView *subView = [[frame webView] hitTest:[event locationInWindow]];
- if (subView) {
+ if (subView)
[subView keyDown:event];
- down = YES;
- }
}
- (void)enableDOMUIEventLogging:(WebScriptObject *)node