Bug 161996 - Add needsPlainTextQuirk and send it to the UIProcess
Summary: Add needsPlainTextQuirk and send it to the UIProcess
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKit2 (show other bugs)
Version: WebKit Local Build
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-09-14 15:37 PDT by Beth Dakin
Modified: 2016-09-14 16:17 PDT (History)
5 users (show)

See Also:


Attachments
Patch (6.55 KB, patch)
2016-09-14 15:41 PDT, Beth Dakin
andersca: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Beth Dakin 2016-09-14 15:37:56 PDT
Add needsPlainTextQuirk and send it to the UIProcess

rdar://problem/26013388
Comment 1 Beth Dakin 2016-09-14 15:41:31 PDT
Created attachment 288875 [details]
Patch
Comment 2 Simon Fraser (smfr) 2016-09-14 16:02:26 PDT
Comment on attachment 288875 [details]
Patch

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

> Source/WebKit2/WebProcess/WebPage/WebPage.cpp:4820
> +    String fragmentIdentifier = url.fragmentIdentifier();

Why compute this up front, when you won't use it for twitter, onedrive etc?
Comment 3 Beth Dakin 2016-09-14 16:08:36 PDT
Thanks Anders! https://trac.webkit.org/changeset/205934
Comment 4 Beth Dakin 2016-09-14 16:17:27 PDT
(In reply to comment #2)
> Comment on attachment 288875 [details]
> Patch
> 
> View in context:
> https://bugs.webkit.org/attachment.cgi?id=288875&action=review
> 
> > Source/WebKit2/WebProcess/WebPage/WebPage.cpp:4820
> > +    String fragmentIdentifier = url.fragmentIdentifier();
> 
> Why compute this up front, when you won't use it for twitter, onedrive etc?

https://trac.webkit.org/changeset/205935 Thanks Simon!