Changeset 222708 in webkit


Ignore:
Timestamp:
Oct 2, 2017 7:32:52 AM (7 years ago)
Author:
Carlos Garcia Campos
Message:

[GTK][WPE] Enable interactive forms validation by default
https://bugs.webkit.org/show_bug.cgi?id=177737

Reviewed by Michael Catanzaro.

It's currently disabled for no reason.

  • Shared/WebPreferencesDefinitions.h:
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r222704 r222708  
     12017-10-02  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK][WPE] Enable interactive forms validation by default
     4        https://bugs.webkit.org/show_bug.cgi?id=177737
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        It's currently disabled for no reason.
     9
     10        * Shared/WebPreferencesDefinitions.h:
     11
    1122017-10-02  Michael Catanzaro  <mcatanzaro@igalia.com>
    213
  • trunk/Source/WebKit/Shared/WebPreferencesDefinitions.h

    r222613 r222708  
    5656#else
    5757#define DEFAULT_PDFPLUGIN_ENABLED false
    58 #endif
    59 
    60 #if PLATFORM(COCOA)
    61 #define DEFAULT_HTML_INTERACTIVE_FORM_VALIDATION_ENABLED true
    62 #else
    63 #define DEFAULT_HTML_INTERACTIVE_FORM_VALIDATION_ENABLED false
    6458#endif
    6559
     
    295289    macro(MediaPreloadingEnabled, mediaPreloadingEnabled, Bool, bool, false, "", "") \
    296290    macro(IntersectionObserverEnabled, intersectionObserverEnabled, Bool, bool, false, "Intersection Observer", "Enable Intersection Observer support") \
    297     macro(InteractiveFormValidationEnabled, interactiveFormValidationEnabled, Bool, bool, DEFAULT_HTML_INTERACTIVE_FORM_VALIDATION_ENABLED, "HTML Interactive Form Validation", "HTML interactive form validation") \
     291    macro(InteractiveFormValidationEnabled, interactiveFormValidationEnabled, Bool, bool, true, "HTML Interactive Form Validation", "HTML interactive form validation") \
    298292    macro(ShouldSuppressKeyboardInputDuringProvisionalNavigation, shouldSuppressKeyboardInputDuringProvisionalNavigation, Bool, bool, false, "", "") \
    299293    macro(CSSGridLayoutEnabled, cssGridLayoutEnabled, Bool, bool, true, "CSS Grid", "CSS Grid Layout Module support") \
Note: See TracChangeset for help on using the changeset viewer.