Changeset 61285 in webkit


Ignore:
Timestamp:
Jun 16, 2010 2:56:28 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-06-16 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

Enable HTML5 Parser in Safari on Mac
https://bugs.webkit.org/show_bug.cgi?id=40739

The HTML5 parser is probably off on all webkit ports.
We should either flip the meaning of the default so that
"false" means HTML5 on all ports, or we'll have to write
more code like this for all the other ports.

  • WebView/WebPreferences.mm: (+[WebPreferences initialize]):
Location:
trunk/WebKit/mac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/mac/ChangeLog

    r61233 r61285  
     12010-06-16  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Enable HTML5 Parser in Safari on Mac
     6        https://bugs.webkit.org/show_bug.cgi?id=40739
     7
     8        The HTML5 parser is probably off on all webkit ports.
     9        We should either flip the meaning of the default so that
     10        "false" means HTML5 on all ports, or we'll have to write
     11        more code like this for all the other ports.
     12
     13        * WebView/WebPreferences.mm:
     14        (+[WebPreferences initialize]):
     15
    1162010-06-15  Mark Rowe  <mrowe@apple.com>
    217
  • trunk/WebKit/mac/WebView/WebPreferences.mm

    r60509 r61285  
    361361        [NSNumber numberWithUnsignedInt:4], WebKitPluginAllowedRunTimePreferenceKey,
    362362        [NSNumber numberWithBool:NO],   WebKitFrameFlatteningEnabledPreferenceKey,
     363        [NSNumber numberWithBool:YES],   WebKitHTML5ParserEnabledPreferenceKey,
    363364        nil];
    364365
Note: See TracChangeset for help on using the changeset viewer.