RESOLVED FIXED 193599
[iOS] Focus ring for checkboxes, radio buttons, buttons and search fields should hug tighter to the contour
https://bugs.webkit.org/show_bug.cgi?id=193599
Summary [iOS] Focus ring for checkboxes, radio buttons, buttons and search fields sho...
Daniel Bates
Reported 2019-01-18 15:49:52 PST
The focus rings for checkboxes, radio buttons, and maybe even search fields seem loose fitting. We should make them more tightly draw around the contour of these controls.
Attachments
Patch (4.05 KB, patch)
2019-02-18 10:49 PST, Daniel Bates
no flags
Patch (7.96 KB, patch)
2019-02-18 11:21 PST, Daniel Bates
no flags
Patch and mismatch ref tests (22.85 KB, patch)
2019-02-18 12:12 PST, Daniel Bates
no flags
Patch and mismatch ref tests (22.61 KB, patch)
2019-02-18 12:14 PST, Daniel Bates
no flags
Archive of layout-test-results from ews121 for ios-simulator-wk2 (18.34 MB, application/zip)
2019-02-18 14:03 PST, EWS Watchlist
no flags
Archive of layout-test-results from ews205 for win-future (12.83 MB, application/zip)
2019-02-18 14:26 PST, EWS Watchlist
no flags
Patch and mismatched refs (21.58 KB, patch)
2019-02-18 15:04 PST, Daniel Bates
no flags
To land (21.76 KB, patch)
2019-02-18 15:20 PST, Daniel Bates
no flags
Radar WebKit Bug Importer
Comment 1 2019-01-18 15:50:28 PST
Daniel Bates
Comment 2 2019-02-18 10:49:55 PST
Simon Fraser (smfr)
Comment 3 2019-02-18 11:01:50 PST
Comment on attachment 362302 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=362302&action=review Can we make a ref test for this stuff? > Source/WebCore/rendering/RenderElement.cpp:1908 > + LayoutRect paintRectToUse { paintRect }; > +#if PLATFORM(IOS_FAMILY) > + // Workaround for <rdar://problem/6209763>. Force the painting bounds of checkboxes and radio controls to be square. > + if (style().appearance() == CheckboxPart || style().appearance() == RadioPart) { > + int width = std::min(paintRect.width(), paintRect.height()); > + int height = width; > + paintRectToUse = IntRect { paintRect.x(), paintRect.y() + (downcast<RenderBox>(*this).height() - height) / 2, width, height }; // Vertically center the checkbox, like on desktop > + } > +#endif > + addFocusRingRects(focusRingRects, paintRectToUse.location(), paintInfo.paintContainer); This really needs to move into RenderTheme code (I guess that's bug 194781).
Daniel Bates
Comment 4 2019-02-18 11:03:31 PST
(In reply to Simon Fraser (smfr) from comment #3) > Comment on attachment 362302 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=362302&action=review > > Can we make a ref test for this stuff? > > > Source/WebCore/rendering/RenderElement.cpp:1908 > > + LayoutRect paintRectToUse { paintRect }; > > +#if PLATFORM(IOS_FAMILY) > > + // Workaround for <rdar://problem/6209763>. Force the painting bounds of checkboxes and radio controls to be square. > > + if (style().appearance() == CheckboxPart || style().appearance() == RadioPart) { > > + int width = std::min(paintRect.width(), paintRect.height()); > > + int height = width; > > + paintRectToUse = IntRect { paintRect.x(), paintRect.y() + (downcast<RenderBox>(*this).height() - height) / 2, width, height }; // Vertically center the checkbox, like on desktop > > + } > > +#endif > > + addFocusRingRects(focusRingRects, paintRectToUse.location(), paintInfo.paintContainer); > > This really needs to move into RenderTheme code (I guess that's bug 194781). Yeah, I debated moving it now. Should have seen my local checkbox. I did do it. I could do still. Kinda wanted to fix in bug #194781. What do you say?
Daniel Bates
Comment 5 2019-02-18 11:21:55 PST
Created attachment 362307 [details] Patch Now with a theme...
Daniel Bates
Comment 6 2019-02-18 12:12:29 PST
Created attachment 362311 [details] Patch and mismatch ref tests
Daniel Bates
Comment 7 2019-02-18 12:14:00 PST
Created attachment 362312 [details] Patch and mismatch ref tests
zalan
Comment 8 2019-02-18 12:31:12 PST
Comment on attachment 362312 [details] Patch and mismatch ref tests View in context: https://bugs.webkit.org/attachment.cgi?id=362312&action=review > Source/WebCore/rendering/RenderTheme.h:125 > + virtual void adjustPaintRect(const RenderObject&, LayoutRect&) const { } Could you tighten the type to RenderElement, please? > Source/WebCore/rendering/RenderThemeIOS.mm:383 > + int width = std::min(paintRect.width(), paintRect.height()); int? why? > Source/WebCore/rendering/RenderThemeIOS.mm:385 > + paintRect = IntRect { paintRect.x(), paintRect.y() + (downcast<RenderBox>(renderer).height() - height) / 2, width, height }; // Vertically center the checkbox, like on desktop. Is the RenderBox type guaranteed here? (I mean at this point I know it is through the appearance check, but downcasting like this is not super future-proof).
Daniel Bates
Comment 9 2019-02-18 12:43:55 PST
Comment on attachment 362312 [details] Patch and mismatch ref tests View in context: https://bugs.webkit.org/attachment.cgi?id=362312&action=review >> Source/WebCore/rendering/RenderTheme.h:125 >> + virtual void adjustPaintRect(const RenderObject&, LayoutRect&) const { } > > Could you tighten the type to RenderElement, please? Cannot due to call site restrictions. Anything is possible but have to do type checking and casting at call sites. >> Source/WebCore/rendering/RenderThemeIOS.mm:383 >> + int width = std::min(paintRect.width(), paintRect.height()); > > int? why? Because that’s how the code was written. I’ll change it to anything you want so long as you guarantee identical results. What do want? LayoutUnit to hide the int? >> Source/WebCore/rendering/RenderThemeIOS.mm:385 >> + paintRect = IntRect { paintRect.x(), paintRect.y() + (downcast<RenderBox>(renderer).height() - height) / 2, width, height }; // Vertically center the checkbox, like on desktop. > > Is the RenderBox type guaranteed here? (I mean at this point I know it is through the appearance check, but downcasting like this is not super future-proof). A non-box checkbox or radio seems weird. What do you want me to do?
EWS Watchlist
Comment 10 2019-02-18 14:03:30 PST
Comment on attachment 362312 [details] Patch and mismatch ref tests Attachment 362312 [details] did not pass ios-sim-ews (ios-simulator-wk2): Output: https://webkit-queues.webkit.org/results/11195244 New failing tests: fast/forms/focus-checked-radio.html fast/forms/focus-text-field.html fast/forms/focus-search-field.html fast/forms/focus-textarea.html fast/forms/focus-reset-button.html fast/forms/focus-checked-checkbox.html fast/forms/focus-checkbox.html fast/forms/focus-button.html fast/forms/focus-submit-button.html fast/forms/focus-radio.html
EWS Watchlist
Comment 11 2019-02-18 14:03:33 PST Comment hidden (obsolete)
EWS Watchlist
Comment 12 2019-02-18 14:25:55 PST Comment hidden (obsolete)
EWS Watchlist
Comment 13 2019-02-18 14:26:08 PST Comment hidden (obsolete)
Simon Fraser (smfr)
Comment 14 2019-02-18 14:35:34 PST
Comment on attachment 362312 [details] Patch and mismatch ref tests Alan would prefer to go back to your original patch, with the test cases. We'll figure out the right way to use RenderTheme in future.
Daniel Bates
Comment 15 2019-02-18 15:04:47 PST
Created attachment 362344 [details] Patch and mismatched refs
Daniel Bates
Comment 16 2019-02-18 15:07:02 PST
(In reply to Build Bot from comment #10) > Comment on attachment 362312 [details] > Patch and mismatch ref tests > > Attachment 362312 [details] did not pass ios-sim-ews (ios-simulator-wk2): > Output: https://webkit-queues.webkit.org/results/11195244 > > New failing tests: > fast/forms/focus-checked-radio.html > fast/forms/focus-text-field.html > fast/forms/focus-search-field.html > fast/forms/focus-textarea.html > fast/forms/focus-reset-button.html > fast/forms/focus-checked-checkbox.html > fast/forms/focus-checkbox.html > fast/forms/focus-button.html > fast/forms/focus-submit-button.html > fast/forms/focus-radio.html Forgot these tests depend on UIKit changes to support testing tab support AND a build with ENABLE(FULL_KEYBOARD_ACCESS) enabled. We have neither in OpenSource. So, will skip for now.
Daniel Bates
Comment 17 2019-02-18 15:20:44 PST
Daniel Bates
Comment 18 2019-02-18 16:10:42 PST
Daniel Bates
Comment 19 2019-02-28 09:46:37 PST
Fixed up path to ui-helper.js so that we actually load it and avoid timing out. Committed the fix in <https://trac.webkit.org/changeset/242202>.
Note You need to log in before you can comment on or make changes to this bug.