Changeset 229061 in webkit


Ignore:
Timestamp:
Feb 27, 2018 8:39:11 AM (6 years ago)
Author:
commit-queue@webkit.org
Message:

Potential privacy issue: DNS prefetching can be re-enabled
https://bugs.webkit.org/show_bug.cgi?id=182924

Patch by Milan Crha <mcrha@redhat.com> on 2018-02-27
Reviewed by Michael Catanzaro.

  • dom/Document.cpp:

(WebCore::Document::parseDNSPrefetchControlHeader):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r229059 r229061  
     12018-02-27  Milan Crha  <mcrha@redhat.com>
     2
     3        Potential privacy issue: DNS prefetching can be re-enabled
     4        https://bugs.webkit.org/show_bug.cgi?id=182924
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        * dom/Document.cpp:
     9        (WebCore::Document::parseDNSPrefetchControlHeader):
     10
    1112018-02-26  Antoine Quint  <graouts@apple.com>
    212
  • trunk/Source/WebCore/dom/Document.cpp

    r228949 r229061  
    57665766void Document::parseDNSPrefetchControlHeader(const String& dnsPrefetchControl)
    57675767{
     5768    if (!settings().dnsPrefetchingEnabled())
     5769        return;
     5770
    57685771    if (equalLettersIgnoringASCIICase(dnsPrefetchControl, "on") && !m_haveExplicitlyDisabledDNSPrefetch) {
    57695772        m_isDNSPrefetchEnabled = true;
Note: See TracChangeset for help on using the changeset viewer.