WebKit Bugzilla
New
Browse
Search+
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
156083
Web Automation: the interaction queue in WebAutomationSession::performKeyboardInteractions doesn't work
https://bugs.webkit.org/show_bug.cgi?id=156083
Summary
Web Automation: the interaction queue in WebAutomationSession::performKeyboar...
Blaze Burg
Reported
2016-03-31 14:20:28 PDT
Whoops,
Attachments
Patch
(2.37 KB, patch)
2016-03-31 14:22 PDT
,
Blaze Burg
timothy
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Radar WebKit Bug Importer
Comment 1
2016-03-31 14:21:16 PDT
<
rdar://problem/25473518
>
Blaze Burg
Comment 2
2016-03-31 14:22:32 PDT
Created
attachment 275326
[details]
Patch
Timothy Hatcher
Comment 3
2016-03-31 14:26:11 PDT
Comment on
attachment 275326
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=275326&action=review
> Source/WebKit2/UIProcess/Automation/WebAutomationSession.cpp:750 > + actionsToPerform.reserveCapacity(interactions.length());
You can use uncheckedAppend in the loop since you do this.
> Source/WebKit2/UIProcess/Automation/WebAutomationSession.cpp:752 > for (auto it = interactions.begin(); it != interactions.end(); ++it) {
for (auto& interaction : interactions) {
Blaze Burg
Comment 4
2016-03-31 14:51:37 PDT
Committed
r198918
: <
http://trac.webkit.org/changeset/198918
>
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