Bug 211913

Summary: Attribute non-network loads and loads with html strings as automatically app-bound
Product: WebKit Reporter: Kate Cheney <katherine_cheney>
Component: WebKit Misc.Assignee: Kate Cheney <katherine_cheney>
Status: RESOLVED FIXED    
Severity: Normal CC: bfulgham, webkit-bug-importer, wilander
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch
none
Patch
none
Patch for landing none

Kate Cheney
Reported 2020-05-14 11:59:42 PDT
We should consider any non-network loads or WebView loads with html strings as app-bound.
Attachments
Patch (19.01 KB, patch)
2020-05-14 13:49 PDT, Kate Cheney
no flags
Patch (20.16 KB, patch)
2020-05-14 14:25 PDT, Kate Cheney
no flags
Patch for landing (20.15 KB, patch)
2020-05-14 17:50 PDT, Kate Cheney
no flags
Kate Cheney
Comment 1 2020-05-14 13:49:29 PDT
Kate Cheney
Comment 2 2020-05-14 14:25:27 PDT
Kate Cheney
Comment 3 2020-05-14 15:58:09 PDT
Brent Fulgham
Comment 4 2020-05-14 17:35:42 PDT
Comment on attachment 399408 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=399408&action=review Looks good! I had a couple of minor suggestions. > Source/WebKit/UIProcess/WebPageProxy.cpp:1394 > + if (MIMEType == String("text/html") && !WEB_PAGE_PROXY_ADDITIONS_SETISNAVIGATINGTOAPPBOUNDDOMAIN) if (MIMEType == "text/html"_s && !WEB_PAGE_PROXY_ADDITIONS_SETISNAVIGATINGTOAPPBOUNDDOMAIN) > Source/WebKit/UIProcess/WebPageProxy.cpp:3120 > + return requestURL.protocolIsAbout() || requestURL.protocolIsData() || requestURL.protocolIsBlob() || requestURL.isLocalFile() || requestURL.protocolIsJavaScript(); Didn't Chris have some comment on a different URL method to use for this? I can't find his comment right now. :-\
Kate Cheney
Comment 5 2020-05-14 17:46:38 PDT
(In reply to Brent Fulgham from comment #4) > Comment on attachment 399408 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=399408&action=review > > Looks good! I had a couple of minor suggestions. > Thanks! > > Source/WebKit/UIProcess/WebPageProxy.cpp:1394 > > + if (MIMEType == String("text/html") && !WEB_PAGE_PROXY_ADDITIONS_SETISNAVIGATINGTOAPPBOUNDDOMAIN) > > if (MIMEType == "text/html"_s && > !WEB_PAGE_PROXY_ADDITIONS_SETISNAVIGATINGTOAPPBOUNDDOMAIN) > Will change! > > Source/WebKit/UIProcess/WebPageProxy.cpp:3120 > > + return requestURL.protocolIsAbout() || requestURL.protocolIsData() || requestURL.protocolIsBlob() || requestURL.isLocalFile() || requestURL.protocolIsJavaScript(); > > Didn't Chris have some comment on a different URL method to use for this? I > can't find his comment right now. :-\ He suggested using !requestURL.protocolIsInHTTPFamily() in https://bugs.webkit.org/show_bug.cgi?id=208893. Since the tests use a custom URL scheme handler, they would also be included in this check. So I don't think that will work unless we figure out a way around the testing.
Kate Cheney
Comment 6 2020-05-14 17:50:30 PDT
Created attachment 399431 [details] Patch for landing
EWS
Comment 7 2020-05-14 18:21:24 PDT
Committed r261727: <https://trac.webkit.org/changeset/261727> All reviewed patches have been landed. Closing bug and clearing flags on attachment 399431 [details].
Radar WebKit Bug Importer
Comment 8 2020-05-14 18:22:17 PDT
Note You need to log in before you can comment on or make changes to this bug.