⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 180687 in webkit


Ignore:
Timestamp:
Feb 26, 2015, 11:29:48 AM (12 years ago)
Author:
beidson@apple.com
Message:

Make WKPageGroupRemoveAllUserContentFilters actually remove all user content filters
https://bugs.webkit.org/show_bug.cgi?id=142047

Reviewed by Geoff Garen.

Source/WebKit2:

  • UIProcess/API/C/WKPageGroup.cpp:

(WKPageGroupRemoveAllUserContentFilters): Remove all content filters instead of removing all user scripts.

LayoutTests:

  • platform/mac-wk2/TestExpectations: Renable content filter tests, as they should no longer interfere with others.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r180685 r180687  
     12015-02-26  Brady Eidson  <beidson@apple.com>
     2
     3        Make WKPageGroupRemoveAllUserContentFilters actually remove all user content filters
     4        https://bugs.webkit.org/show_bug.cgi?id=142047
     5
     6        Reviewed by Geoff Garen.
     7
     8        * platform/mac-wk2/TestExpectations: Renable content filter tests, as they should no longer interfere with others.
     9
    1102015-02-26  Said Abou-Hallawa  <sabouhallawa@apple.com>
    211
  • trunk/LayoutTests/platform/mac-wk2/TestExpectations

    r180672 r180687  
    517517### END OF (7) New WebKit2-only failures in Yosemite
    518518########################################
     519
     520http/tests/usercontentfilter [ Pass ]
  • trunk/Source/WebKit2/ChangeLog

    r180632 r180687  
     12015-02-26  Brady Eidson  <beidson@apple.com>
     2
     3        Make WKPageGroupRemoveAllUserContentFilters actually remove all user content filters
     4        https://bugs.webkit.org/show_bug.cgi?id=142047
     5
     6        Reviewed by Geoff Garen.
     7
     8        * UIProcess/API/C/WKPageGroup.cpp:
     9        (WKPageGroupRemoveAllUserContentFilters): Remove all content filters instead of removing all user scripts.
     10
    1112015-02-25  Anders Carlsson  <andersca@apple.com>
    212
  • trunk/Source/WebKit2/UIProcess/API/C/WKPageGroup.cpp

    r180362 r180687  
    9393{
    9494#if ENABLE(CONTENT_EXTENSIONS)
    95     toImpl(pageGroupRef)->removeAllUserScripts();
     95    toImpl(pageGroupRef)->removeAllUserContentFilters();
    9696#else
    9797    UNUSED_PARAM(pageGroupRef);
Note: See TracChangeset for help on using the changeset viewer.