WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
Bug 57904
onClick does not function with <select> elements in WebKit2
https://bugs.webkit.org/show_bug.cgi?id=57904
Summary
onClick does not function with <select> elements in WebKit2
Jon Lee
Reported
2011-04-05 16:48:42 PDT
<
rdar://problem/9165095
>
Attachments
Patch
(30.28 KB, patch)
2011-04-07 16:27 PDT
,
Jon Lee
andersca
: review-
Details
Formatted Diff
Diff
Patch
(40.35 KB, patch)
2011-04-08 15:57 PDT
,
Jon Lee
no flags
Details
Formatted Diff
Diff
Patch
(40.41 KB, patch)
2011-04-11 09:58 PDT
,
Jon Lee
andersca
: review-
Details
Formatted Diff
Diff
Patch
(35.12 KB, patch)
2011-04-11 13:54 PDT
,
Jon Lee
andersca
: review-
Details
Formatted Diff
Diff
Patch
(31.52 KB, patch)
2011-04-11 15:48 PDT
,
Jon Lee
no flags
Details
Formatted Diff
Diff
Patch
(31.52 KB, patch)
2011-04-13 15:11 PDT
,
Jon Lee
andersca
: review+
commit-queue
: commit-queue-
Details
Formatted Diff
Diff
Patch
(31.95 KB, patch)
2011-04-14 15:25 PDT
,
Jon Lee
no flags
Details
Formatted Diff
Diff
Patch
(37.93 KB, patch)
2011-04-14 16:57 PDT
,
Jon Lee
no flags
Details
Formatted Diff
Diff
Patch
(38.56 KB, patch)
2011-04-14 17:20 PDT
,
Jon Lee
mjs
: review+
mjs
: commit-queue+
Details
Formatted Diff
Diff
Patch
(38.56 KB, patch)
2011-04-14 19:11 PDT
,
Jon Lee
andersca
: review+
commit-queue
: commit-queue-
Details
Formatted Diff
Diff
Show Obsolete
(9)
View All
Add attachment
proposed patch, testcase, etc.
Jon Lee
Comment 1
2011-04-07 16:27:34 PDT
Created
attachment 88727
[details]
Patch
Anders Carlsson
Comment 2
2011-04-07 18:21:32 PDT
Comment on
attachment 88727
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=88727&action=review
> Source/WebKit2/UIProcess/API/mac/WKView.mm:946 > +- (void)Selector:(NSEvent *)theEvent \ > +{ \ > +NativeWebMouseEvent webEvent(theEvent, self); \ > +_data->_page->handleMouseEvent(webEvent); \ > +}
I think we indent the body of multi-line macros.
> Source/WebKit2/UIProcess/WebPageProxy.cpp:782 > + // (
bug #57904
) we need to keep track of the mouse down event in the case where we
Please use full URLs when linking to bugs, that makes it easier to open them. Also use a capital letter in the beginning of the sentence.
> Source/WebKit2/UIProcess/WebPageProxy.cpp:785 > + // when the mouse up message is received from WebProcess
Period at the end :)
> Source/WebKit2/UIProcess/WebPageProxy.cpp:2146 > +NativeWebMouseEvent* WebPageProxy::currentMouseDownEvent()
Maybe this should be called "currentlyProcessedMouseDownEvent" or something along those lines, to indicate that this is the event that's been sent to the web process.
> Source/WebKit2/UIProcess/mac/WebPopupMenuProxyMac.mm:131 > + // 57904: This code is adopted from EventHandler::sendFakeEventsAfterWidgetTracking()
Bug URL.
> Source/WebKit2/UIProcess/mac/WebPopupMenuProxyMac.mm:135 > + NSEvent *fakeEvent = nil;
No need to initialize fakeEvent to nil. You can just initialize it with the created event.
> Source/WebKit2/UIProcess/mac/WebPopupMenuProxyMac.mm:148 > + location:[[m_client->currentMouseDownEvent()->nativeView() window] convertScreenToBase:[NSEvent mouseLocation]]
Do we really need to store the native view in the event? Can't we just get the window from the WKView?
> Source/WebKit2/UIProcess/win/WebPopupMenuProxyWin.cpp:334 > + const MSG* initiatingWinEvent = m_client->currentMouseDownEvent()->nativeEvent(); > + MSG fakeEvent = *initiatingWinEvent; > + fakeEvent.message = WM_LBUTTONUP; > + ::DispatchMessage(&fakeEvent);
This could use a comment. Also, is DispatchMessage the right event here or should we use ::PostMessage instead?
Jon Lee
Comment 3
2011-04-08 15:57:38 PDT
Created
attachment 88890
[details]
Patch Made adjustments based on anderca's suggestions.
Jon Lee
Comment 4
2011-04-11 09:58:03 PDT
Created
attachment 89021
[details]
Patch Fixing windows build error
Anders Carlsson
Comment 5
2011-04-11 12:57:07 PDT
Comment on
attachment 89021
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=89021&action=review
The indentation in WebPopupMenuProxyMac.mm is messed up.
> Source/WebKit2/UIProcess/mac/WebPopupMenuProxyMac.mm:127 > + if (m_client)
This could be an early return.
> Source/WebKit2/UIProcess/mac/WebPopupMenuProxyMac.mm:132 > + NSEvent* initiatingNSEvent = m_client->currentlyProcessedMouseDownEvent()->nativeEvent();
I think you need to null check the event before getting the native event.
> Source/WebKit2/UIProcess/win/WebPopupMenuProxyWin.cpp:328 > + if (m_client) {
Early return.
> Source/WebKit2/UIProcess/win/WebPopupMenuProxyWin.cpp:339 > + const MSG* initiatingWinEvent = m_client->currentlyProcessedMouseDownEvent()->nativeEvent();
Null check.
Anders Carlsson
Comment 6
2011-04-11 13:12:34 PDT
Comment on
attachment 89021
[details]
Patch Whoops, I meant to r- this.
Jon Lee
Comment 7
2011-04-11 13:54:02 PDT
Created
attachment 89078
[details]
Patch early returns added, format fixed in ....Mac.mm
Anders Carlsson
Comment 8
2011-04-11 14:36:37 PDT
Comment on
attachment 89078
[details]
Patch There are a lot of unneeded whitespace changes in WebPopupMenuProxyMac.mm Also, I think the currently processed mouse down event needs to be cleared out if the web process crashes (you can do this in WebPageProxy::processDidCrash()
Jon Lee
Comment 9
2011-04-11 15:48:05 PDT
Created
attachment 89107
[details]
Patch Clearing out cached events, including mouse down (relevant to this bug), and also mouse move and wheel.
WebKit Commit Bot
Comment 10
2011-04-13 14:34:43 PDT
Comment on
attachment 89107
[details]
Patch Rejecting
attachment 89107
[details]
from commit-queue. Failed to run "['./Tools/Scripts/webkit-patch', '--status-host=queues.webkit.org', '--bot-id=cr-jail-8', 'apply-..." exit_code: 2 Last 500 characters of output: 1 line). patching file Source/WebKit2/UIProcess/WebPopupMenuProxy.h patching file Source/WebKit2/UIProcess/mac/WebPopupMenuProxyMac.mm patching file Source/WebKit2/UIProcess/win/WebPopupMenuProxyWin.cpp patching file Source/WebKit2/UIProcess/win/WebView.cpp patching file Source/WebKit2/WebKit2.xcodeproj/project.pbxproj patching file Source/WebKit2/win/WebKit2.vcproj Failed to run "[u'/mnt/git/webkit-commit-queue/Tools/Scripts/svn-apply', u'--reviewer', u'Anders Carlsson', u'--..." exit_code: 1 Full output:
http://queues.webkit.org/results/8404382
Jon Lee
Comment 11
2011-04-13 15:11:24 PDT
Created
attachment 89474
[details]
Patch Trying again-- same changes, on top of newer code.
WebKit Review Bot
Comment 12
2011-04-13 15:12:20 PDT
Comment on
attachment 89474
[details]
Patch Rejecting
attachment 89474
[details]
from review queue.
jonlee@apple.com
does not have reviewer permissions according to
http://trac.webkit.org/browser/trunk/Tools/Scripts/webkitpy/common/config/committers.py
. - If you do not have reviewer rights please read
http://webkit.org/coding/contributing.html
for instructions on how to use bugzilla flags. - If you have reviewer rights please correct the error in Tools/Scripts/webkitpy/common/config/committers.py by adding yourself to the file (no review needed). The commit-queue restarts itself every 2 hours. After restart the commit-queue will correctly respect your reviewer rights.
WebKit Review Bot
Comment 13
2011-04-13 15:13:32 PDT
Comment on
attachment 89474
[details]
Patch Rejecting
attachment 89474
[details]
from commit-queue.
jonlee@apple.com
does not have committer permissions according to
http://trac.webkit.org/browser/trunk/Tools/Scripts/webkitpy/common/config/committers.py
. - If you do not have committer rights please read
http://webkit.org/coding/contributing.html
for instructions on how to use bugzilla flags. - If you have committer rights please correct the error in Tools/Scripts/webkitpy/common/config/committers.py by adding yourself to the file (no review needed). The commit-queue restarts itself every 2 hours. After restart the commit-queue will correctly respect your committer rights.
WebKit Commit Bot
Comment 14
2011-04-14 05:37:01 PDT
Comment on
attachment 89474
[details]
Patch Rejecting
attachment 89474
[details]
from commit-queue. Failed to run "['./Tools/Scripts/webkit-patch', '--status-host=queues.webkit.org', '--bot-id=cr-jail-4', 'apply-..." exit_code: 2 Last 500 characters of output: eProxy.h patching file Source/WebKit2/UIProcess/WebPopupMenuProxy.h patching file Source/WebKit2/UIProcess/mac/WebPopupMenuProxyMac.mm patching file Source/WebKit2/UIProcess/win/WebPopupMenuProxyWin.cpp patching file Source/WebKit2/UIProcess/win/WebView.cpp patching file Source/WebKit2/WebKit2.xcodeproj/project.pbxproj patching file Source/WebKit2/win/WebKit2.vcproj Failed to run "[u'/mnt/git/webkit-commit-queue/Tools/Scripts/svn-apply', u'--reviewer', u'Anders Carlsson', u'--..." exit_code: 1 Full output:
http://queues.webkit.org/results/8403570
Jon Lee
Comment 15
2011-04-14 15:25:38 PDT
Created
attachment 89670
[details]
Patch
Jon Lee
Comment 16
2011-04-14 16:57:16 PDT
Created
attachment 89685
[details]
Patch Trying to fold changes into Qt.
Jon Lee
Comment 17
2011-04-14 17:20:27 PDT
Created
attachment 89695
[details]
Patch
Maciej Stachowiak
Comment 18
2011-04-14 18:32:24 PDT
Comment on
attachment 89695
[details]
Patch Signing off on the updates since the last version.
Maciej Stachowiak
Comment 19
2011-04-14 18:32:51 PDT
Comment on
attachment 89695
[details]
Patch Signing off on the updates since the last version.
Jon Lee
Comment 20
2011-04-14 19:11:31 PDT
Created
attachment 89721
[details]
Patch
WebKit Commit Bot
Comment 21
2011-04-15 11:02:40 PDT
Comment on
attachment 89721
[details]
Patch Rejecting
attachment 89721
[details]
from commit-queue. Failed to run "['./Tools/Scripts/webkit-patch', '--status-host=queues.webkit.org', '--bot-id=cr-jail-4', 'land-a..." exit_code: 2 Last 500 characters of output: World.cpp M Source/WebCore/html/HTMLCanvasElement.cpp
r83990
= 52d4a4ddb5bdfde702f42fbe11d1a2d0501d21b8 (refs/remotes/trunk) M Source/WebCore/WebCore.exp.in M Source/WebCore/dom/DocumentMarkerController.h M Source/WebCore/dom/DocumentMarkerController.cpp M Source/WebCore/dom/DocumentMarker.h M Source/WebCore/ChangeLog
r83991
= 3e9aec703b851aa84338cad59d52e2be93b0c66e (refs/remotes/trunk) First, rewinding head to replay your work on top of it... Fast-forwarded master to refs/remotes/trunk. Full output:
http://queues.webkit.org/results/8457195
WebKit Review Bot
Comment 22
2011-04-15 14:14:39 PDT
Comment on
attachment 89107
[details]
Patch Cleared Anders Carlsson's review+ from obsolete
attachment 89107
[details]
so that this bug does not appear in
http://webkit.org/pending-commit
.
Jon Lee
Comment 23
2011-04-18 16:18:36 PDT
The patch was not landing for some reason, so Anders landed it for me, but the bug never got closed. Setting resolution to resolved/fixed.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug