WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
192172
Make drawing tools available when an editable image is focused
https://bugs.webkit.org/show_bug.cgi?id=192172
Summary
Make drawing tools available when an editable image is focused
Tim Horton
Reported
2018-11-29 12:36:12 PST
Make drawing tools available when an editable image is focused
Attachments
Patch
(39.79 KB, patch)
2018-11-29 12:37 PST
,
Tim Horton
no flags
Details
Formatted Diff
Diff
Archive of layout-test-results from ews107 for mac-sierra-wk2
(3.45 MB, application/zip)
2018-11-29 13:39 PST
,
EWS Watchlist
no flags
Details
Patch
(39.89 KB, patch)
2018-11-29 13:40 PST
,
Tim Horton
no flags
Details
Formatted Diff
Diff
Archive of layout-test-results from ews102 for mac-sierra
(2.70 MB, application/zip)
2018-11-29 14:59 PST
,
EWS Watchlist
no flags
Details
Patch
(40.60 KB, patch)
2018-11-29 15:01 PST
,
Tim Horton
no flags
Details
Formatted Diff
Diff
Patch
(21.20 KB, patch)
2018-11-29 18:07 PST
,
Tim Horton
no flags
Details
Formatted Diff
Diff
Show Obsolete
(4)
View All
Add attachment
proposed patch, testcase, etc.
Tim Horton
Comment 1
2018-11-29 12:37:03 PST
Created
attachment 356036
[details]
Patch
Tim Horton
Comment 2
2018-11-29 12:37:05 PST
<
rdar://problem/30337960
>
EWS Watchlist
Comment 3
2018-11-29 12:39:34 PST
Attachment 356036
[details]
did not pass style-queue: ERROR: Source/WebKit/Platform/spi/ios/PencilKitSPI.h:31: Alphabetical sorting problem. [build/include_order] [4] Total errors found: 1 in 21 files If any of these errors are false positives, please file a bug against check-webkit-style.
EWS Watchlist
Comment 4
2018-11-29 13:39:24 PST
Comment on
attachment 356036
[details]
Patch
Attachment 356036
[details]
did not pass mac-wk2-ews (mac-wk2): Output:
https://webkit-queues.webkit.org/results/10201642
New failing tests: accessibility/svg-image.html accessibility/mac/aria-liveregion-on-image.html imported/w3c/web-platform-tests/html/dom/reflection-embedded.html accessibility/presentational-elements-with-focus.html fast/events/tabindex-focus-blur-all.html
EWS Watchlist
Comment 5
2018-11-29 13:39:26 PST
Created
attachment 356049
[details]
Archive of layout-test-results from ews107 for mac-sierra-wk2 The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. Bot: ews107 Port: mac-sierra-wk2 Platform: Mac OS X 10.12.6
Tim Horton
Comment 6
2018-11-29 13:40:48 PST
Created
attachment 356050
[details]
Patch
EWS Watchlist
Comment 7
2018-11-29 13:43:34 PST
Attachment 356050
[details]
did not pass style-queue: ERROR: Source/WebKit/Platform/spi/ios/PencilKitSPI.h:31: Alphabetical sorting problem. [build/include_order] [4] Total errors found: 1 in 21 files If any of these errors are false positives, please file a bug against check-webkit-style.
EWS Watchlist
Comment 8
2018-11-29 14:59:19 PST
Comment on
attachment 356050
[details]
Patch
Attachment 356050
[details]
did not pass mac-ews (mac): Output:
https://webkit-queues.webkit.org/results/10203206
New failing tests: accessibility/presentational-elements-with-focus.html accessibility/mac/aria-liveregion-on-image.html imported/w3c/web-platform-tests/html/dom/reflection-embedded.html accessibility/svg-image.html fast/events/tabindex-focus-blur-all.html
EWS Watchlist
Comment 9
2018-11-29 14:59:20 PST
Created
attachment 356063
[details]
Archive of layout-test-results from ews102 for mac-sierra The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: ews102 Port: mac-sierra Platform: Mac OS X 10.12.6
Tim Horton
Comment 10
2018-11-29 15:01:05 PST
Created
attachment 356064
[details]
Patch
EWS Watchlist
Comment 11
2018-11-29 15:04:11 PST
Attachment 356064
[details]
did not pass style-queue: ERROR: Source/WebKit/Platform/spi/ios/PencilKitSPI.h:31: Alphabetical sorting problem. [build/include_order] [4] Total errors found: 1 in 22 files If any of these errors are false positives, please file a bug against check-webkit-style.
Dean Jackson
Comment 12
2018-11-29 16:11:45 PST
Comment on
attachment 356064
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=356064&action=review
> Source/WebCore/editing/InsertEditableImageCommand.cpp:55 > + m_imageElement->setAttributeWithoutSynchronization(styleAttr, AtomicString("display: block", AtomicString::ConstructFromLiteral));
Should this be block? Image attachments in Mail are inline.
> Source/WebKit/UIProcess/ios/WKInkPickerControl.mm:83 > + CGSize keyboardSize = [UIKeyboard defaultSizeForInterfaceOrientation:[UIApp interfaceOrientation]]; > + return [_inlinePicker sizeThatFits:keyboardSize];
Does this try to make the ink picker the same size as what a keyboard would be? I thought it was less tall?
> Source/WebKit/UIProcess/ios/WKInkPickerControl.mm:94 > + CGSize keyboardSize = [UIKeyboard defaultSizeForInterfaceOrientation:[UIApp interfaceOrientation]];
You probably should use the size parameter here rather than ask for it again :)
Tim Horton
Comment 13
2018-11-29 16:16:21 PST
Comment on
attachment 356064
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=356064&action=review
>> Source/WebKit/UIProcess/ios/WKInkPickerControl.mm:83 >> + return [_inlinePicker sizeThatFits:keyboardSize]; > > Does this try to make the ink picker the same size as what a keyboard would be? I thought it was less tall?
sizeThatFits returns the smaller height. The keyboard provides the /maximum/ size.
>> Source/WebKit/UIProcess/ios/WKInkPickerControl.mm:94 >> + CGSize keyboardSize = [UIKeyboard defaultSizeForInterfaceOrientation:[UIApp interfaceOrientation]]; > > You probably should use the size parameter here rather than ask for it again :)
I don't know what you mean! We're disregarding the input size and just saying that our sizeThatFits is always precisely the width of the keyboard and the height that the ink picker wants.
Dean Jackson
Comment 14
2018-11-29 16:32:55 PST
Comment on
attachment 356064
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=356064&action=review
>>> Source/WebKit/UIProcess/ios/WKInkPickerControl.mm:94 >>> + CGSize keyboardSize = [UIKeyboard defaultSizeForInterfaceOrientation:[UIApp interfaceOrientation]]; >> >> You probably should use the size parameter here rather than ask for it again :) > > I don't know what you mean! We're disregarding the input size and just saying that our sizeThatFits is always precisely the width of the keyboard and the height that the ink picker wants.
My mistake. I thought this was the sizeThatFits that you were calling from inkPickerSize above.
Tim Horton
Comment 15
2018-11-29 16:34:27 PST
https://trac.webkit.org/changeset/238708/webkit
Tim Horton
Comment 16
2018-11-29 18:07:44 PST
Reopening to attach new patch.
Tim Horton
Comment 17
2018-11-29 18:07:45 PST
Created
attachment 356100
[details]
Patch
Tim Horton
Comment 18
2018-11-29 18:08:27 PST
Nope, webkit-patch did the wrong thing.
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