Changeset 206358 in webkit


Ignore:
Timestamp:
Sep 24, 2016 10:08:56 PM (8 years ago)
Author:
Chris Dumez
Message:

[WK2] Enable support for 'download' attribute on anchor elements
https://bugs.webkit.org/show_bug.cgi?id=162535

Reviewed by Darin Adler.

Enable support for 'download' attribute on anchor elements for WebKit2
now that:

  • It works with our NETWORK_SESSION code path (Bug 162531)
  • Supports Blob / Data URLs (Bug 156099)
  • Requires user interaction / ignores synthetic clicks (Bug 156099)
  • Shared/WebPreferencesDefinitions.h:
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r206356 r206358  
     12016-09-24  Chris Dumez  <cdumez@apple.com>
     2
     3        [WK2] Enable support for 'download' attribute on anchor elements
     4        https://bugs.webkit.org/show_bug.cgi?id=162535
     5
     6        Reviewed by Darin Adler.
     7
     8        Enable support for 'download' attribute on anchor elements for WebKit2
     9        now that:
     10        - It works with our NETWORK_SESSION code path (Bug 162531)
     11        - Supports Blob / Data URLs (Bug 156099)
     12        - Requires user interaction / ignores synthetic clicks (Bug 156099)
     13
     14        * Shared/WebPreferencesDefinitions.h:
     15
    1162016-09-24  Chris Dumez  <cdumez@apple.com>
    217
  • trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h

    r206296 r206358  
    228228    macro(DOMIteratorEnabled, domIteratorEnabled, Bool, bool, true, "", "") \
    229229    macro(FetchAPIEnabled, fetchAPIEnabled, Bool, bool, true, "", "") \
    230     macro(DownloadAttributeEnabled, downloadAttributeEnabled, Bool, bool, false, "", "") \
     230    macro(DownloadAttributeEnabled, downloadAttributeEnabled, Bool, bool, true, "", "") \
    231231    macro(SelectionPaintingWithoutSelectionGapsEnabled, selectionPaintingWithoutSelectionGapsEnabled, Bool, bool, DEFAULT_SELECTION_PAINTING_WITHOUT_SELECTION_GAPS_ENABLED, "", "") \
    232232    macro(ApplePayEnabled, applePayEnabled, Bool, bool, false, "", "") \
Note: See TracChangeset for help on using the changeset viewer.