Navigating from a page on http://foo.com to a page on https://foo.com should not trigger app links.
<rdar://problem/22811325>
Created attachment 263880 [details] Patch
Committed r191487: <http://trac.webkit.org/changeset/191487>
Comment on attachment 263880 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=263880&action=review > Source/WebCore/platform/URL.cpp:1612 > + for (int i = 0; i < hostLengthA; ++i) { > + if (a.string()[hostStartA + i] != b.string()[hostStartB + i]) > + return false; > + } No ASCII case folding? Should consider using StringView::substring rather than writing out the loop. Might even want URL member functions that return StringView for pieces of the URL like the host in place inside the URL.