Changeset 209206 in webkit


Ignore:
Timestamp:
Dec 1, 2016 2:14:09 PM (7 years ago)
Author:
Beth Dakin
Message:

Blacklist Netflix for TouchBar support
https://bugs.webkit.org/show_bug.cgi?id=165104

Rubber-stamped by Tim Horton.

Meant to not have the www. in the first case because that is covered by the second
case.

  • html/HTMLMediaElement.cpp:

(WebCore::needsPlaybackControlsManagerQuirk):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r209205 r209206  
     12016-12-01  Beth Dakin  <bdakin@apple.com>
     2
     3        Blacklist Netflix for TouchBar support
     4        https://bugs.webkit.org/show_bug.cgi?id=165104
     5
     6        Rubber-stamped by Tim Horton.
     7
     8        Meant to not have the www. in the first case because that is covered by the second
     9        case.
     10
     11        * html/HTMLMediaElement.cpp:
     12        (WebCore::needsPlaybackControlsManagerQuirk):
     13
    1142016-12-01  Dave Hyatt  <hyatt@apple.com>
    215
  • trunk/Source/WebCore/html/HTMLMediaElement.cpp

    r209145 r209206  
    574574
    575575    String host = page.mainFrame().document()->url().host();
    576     return equalLettersIgnoringASCIICase(host, "www.netflix.com") || host.endsWithIgnoringASCIICase(".netflix.com");
     576    return equalLettersIgnoringASCIICase(host, "netflix.com") || host.endsWithIgnoringASCIICase(".netflix.com");
    577577}
    578578
Note: See TracChangeset for help on using the changeset viewer.