Bug 186472 - Link drag image is inconsistently unreadable in dark mode
Summary: Link drag image is inconsistently unreadable in dark mode
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: New Bugs (show other bugs)
Version: WebKit Nightly Build
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Tim Horton
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2018-06-10 02:35 PDT by Tim Horton
Modified: 2018-06-11 14:08 PDT (History)
7 users (show)

See Also:


Attachments
Patch (6.67 KB, patch)
2018-06-10 02:35 PDT, Tim Horton
no flags Details | Formatted Diff | Diff
Archive of layout-test-results from ews201 for win-future (12.73 MB, application/zip)
2018-06-10 04:23 PDT, EWS Watchlist
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Tim Horton 2018-06-10 02:35:21 PDT
Link drag image is inconsistently unreadable in dark mode
Comment 1 Tim Horton 2018-06-10 02:35:39 PDT
Created attachment 342382 [details]
Patch
Comment 2 EWS Watchlist 2018-06-10 04:23:48 PDT
Comment on attachment 342382 [details]
Patch

Attachment 342382 [details] did not pass win-ews (win):
Output: http://webkit-queues.webkit.org/results/8110746

New failing tests:
http/tests/security/contentSecurityPolicy/userAgentShadowDOM/allow-audio.html
Comment 3 EWS Watchlist 2018-06-10 04:23:59 PDT
Created attachment 342383 [details]
Archive of layout-test-results from ews201 for win-future

The attached test failures were seen while running run-webkit-tests on the win-ews.
Bot: ews201  Port: win-future  Platform: CYGWIN_NT-6.1-2.9.0-0.318-5-3-x86_64-64bit
Comment 4 Megan Gardner 2018-06-11 07:05:51 PDT
Comment on attachment 342382 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=342382&action=review

I’m nervous about just removing the check in default appearance. Can we write a test for this?

> Source/WebKit/UIProcess/Cocoa/WebViewImpl.mm:5019
>      NSAppearanceName appearance = [[m_view effectiveAppearance] bestMatchFromAppearancesWithNames:@[ NSAppearanceNameAqua, NSAppearanceNameDarkAqua ]];

Are we sure that we can do this without leaking dark mode to parts where we are sure we *don’t* want it to be used?

> Source/WebKitLegacy/mac/WebView/WebView.mm:5281
>      NSAppearanceName appearance = [[self effectiveAppearance] bestMatchFromAppearancesWithNames:@[ NSAppearanceNameAqua, NSAppearanceNameDarkAqua ]];

Ditto
Comment 5 Timothy Hatcher 2018-06-11 09:53:04 PDT
Comment on attachment 342382 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=342382&action=review

> Source/WebCore/platform/mac/DragImageMac.mm:306
> +    LocalDefaultSystemAppearance localAppearance(true, page ? page->defaultAppearance() : true);

We need a better way to allow getting the true effective appearance for places like this that need it. This does not feel right as-is, considering the changes to defaultAppearance().

>> Source/WebKit/UIProcess/Cocoa/WebViewImpl.mm:5019
>>      NSAppearanceName appearance = [[m_view effectiveAppearance] bestMatchFromAppearancesWithNames:@[ NSAppearanceNameAqua, NSAppearanceNameDarkAqua ]];
> 
> Are we sure that we can do this without leaking dark mode to parts where we are sure we *don’t* want it to be used?

Megan is right, we cannot do this here. It will cause Safari to use dark mode colors and form controls for pages.
Comment 6 Timothy Hatcher 2018-06-11 09:56:29 PDT
Comment on attachment 342382 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=342382&action=review

>> Source/WebCore/platform/mac/DragImageMac.mm:306
>> +    LocalDefaultSystemAppearance localAppearance(true, page ? page->defaultAppearance() : true);
> 
> We need a better way to allow getting the true effective appearance for places like this that need it. This does not feel right as-is, considering the changes to defaultAppearance().

I think this is fine now. Sorry for the confusion. I think I want to make a patch that flips defaultAppearance to be prefersDarkInterface, so it is easier to read everywhere.

>>> Source/WebKit/UIProcess/Cocoa/WebViewImpl.mm:5019
>>>      NSAppearanceName appearance = [[m_view effectiveAppearance] bestMatchFromAppearancesWithNames:@[ NSAppearanceNameAqua, NSAppearanceNameDarkAqua ]];
>> 
>> Are we sure that we can do this without leaking dark mode to parts where we are sure we *don’t* want it to be used?
> 
> Megan is right, we cannot do this here. It will cause Safari to use dark mode colors and form controls for pages.

Actually, I think this is fine now! I forgot LocalDefaultSystemAppearance now checks for both useSystemAppearance and useDefaultAppearance. In the Safari case, useSystemAppearance will still be false.
Comment 7 Tim Horton 2018-06-11 12:14:12 PDT
(In reply to Timothy Hatcher from comment #6)
> Comment on attachment 342382 [details]
> Patch
> 
> View in context:
> https://bugs.webkit.org/attachment.cgi?id=342382&action=review
> 
> >> Source/WebCore/platform/mac/DragImageMac.mm:306
> >> +    LocalDefaultSystemAppearance localAppearance(true, page ? page->defaultAppearance() : true);
> > 
> > We need a better way to allow getting the true effective appearance for places like this that need it. This does not feel right as-is, considering the changes to defaultAppearance().
> 
> I think this is fine now. Sorry for the confusion. I think I want to make a
> patch that flips defaultAppearance to be prefersDarkInterface, so it is
> easier to read everywhere.

Yes please!

> >>> Source/WebKit/UIProcess/Cocoa/WebViewImpl.mm:5019
> >>>      NSAppearanceName appearance = [[m_view effectiveAppearance] bestMatchFromAppearancesWithNames:@[ NSAppearanceNameAqua, NSAppearanceNameDarkAqua ]];
> >> 
> >> Are we sure that we can do this without leaking dark mode to parts where we are sure we *don’t* want it to be used?
> > 
> > Megan is right, we cannot do this here. It will cause Safari to use dark mode colors and form controls for pages.
> 
> Actually, I think this is fine now! I forgot LocalDefaultSystemAppearance
> now checks for both useSystemAppearance and useDefaultAppearance. In the
> Safari case, useSystemAppearance will still be false.

Yeah, that’s what I was banking on. OK!
Comment 8 WebKit Commit Bot 2018-06-11 14:06:57 PDT
Comment on attachment 342382 [details]
Patch

Clearing flags on attachment: 342382

Committed r232731: <https://trac.webkit.org/changeset/232731>
Comment 9 WebKit Commit Bot 2018-06-11 14:06:59 PDT
All reviewed patches have been landed.  Closing bug.
Comment 10 Radar WebKit Bug Importer 2018-06-11 14:08:19 PDT
<rdar://problem/41019148>