Changeset 246319 in webkit


Ignore:
Timestamp:
Jun 11, 2019 9:26:29 AM (5 years ago)
Author:
sihui_liu@apple.com
Message:

Add a quirk for washingtonpost.com and nytimes.com
https://bugs.webkit.org/show_bug.cgi?id=198678

Reviewed by Geoffrey Garen.

Covered by manual test.

  • page/Quirks.cpp:

(WebCore::Quirks::hasWebSQLSupportQuirk const):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r246314 r246319  
     12019-06-11  Sihui Liu  <sihui_liu@apple.com>
     2
     3        Add a quirk for washingtonpost.com and nytimes.com
     4        https://bugs.webkit.org/show_bug.cgi?id=198678
     5
     6        Reviewed by Geoffrey Garen.
     7
     8        Covered by manual test.
     9
     10        * page/Quirks.cpp:
     11        (WebCore::Quirks::hasWebSQLSupportQuirk const):
     12
    1132019-06-11  Devin Rousso  <drousso@apple.com>
    214
  • trunk/Source/WebCore/page/Quirks.cpp

    r246226 r246319  
    183183        || domain.endsWith(".bostonglobe.com")
    184184        || domain == "latimes.com"
    185         || domain.endsWith(".latimes.com");
     185        || domain.endsWith(".latimes.com")
     186        || domain == "washingtonpost.com"
     187        || domain.endsWith(".washingtonpost.com")
     188        || domain == "nytimes.com"
     189        || domain.endsWith(".nytimes.com");
    186190   
    187191    return m_hasWebSQLSupportQuirk.value();
Note: See TracChangeset for help on using the changeset viewer.