Changeset 52284 in webkit


Ignore:
Timestamp:
Dec 17, 2009 1:26:02 PM (14 years ago)
Author:
eric@webkit.org
Message:

2009-12-17 Alejandro G. Castro <alex@igalia.com>

Reviewed by Eric Seidel.

Added the key WebKitEnableCaretBrowsing to the
layoutTestController.overridePreference in order to activate caret
browsing.
https://bugs.webkit.org/show_bug.cgi?id=32612

  • DumpRenderTree/gtk/DumpRenderTree.cpp: Added the reset value of the setting.
  • DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: Inserted the new key in the keytable.
Location:
trunk/WebKitTools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r52272 r52284  
     12009-12-17  Alejandro G. Castro  <alex@igalia.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Added the key WebKitEnableCaretBrowsing to the
     6        layoutTestController.overridePreference in order to activate caret
     7        browsing.
     8        https://bugs.webkit.org/show_bug.cgi?id=32612
     9
     10        * DumpRenderTree/gtk/DumpRenderTree.cpp: Added the reset value of
     11        the setting.
     12        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: Inserted the new
     13        key in the keytable.
     14
    1152009-12-17  Chris Fleizach  <cfleizach@apple.com>
    216
  • trunk/WebKitTools/DumpRenderTree/gtk/DumpRenderTree.cpp

    r51947 r52284  
    334334                 "default-monospace-font-size", 13,
    335335                 "minimum-font-size", 1,
     336                 "enable-caret-browsing", FALSE,
    336337                 NULL);
    337338
  • trunk/WebKitTools/DumpRenderTree/gtk/LayoutTestControllerGtk.cpp

    r51575 r52284  
    6969        g_hash_table_insert(keyTable, g_strdup("WebKitJavaScriptEnabled"), g_strdup("enable-scripts"));
    7070        g_hash_table_insert(keyTable, g_strdup("WebKitDefaultFontSize"), g_strdup("default-font-size"));
     71        g_hash_table_insert(keyTable, g_strdup("WebKitEnableCaretBrowsing"), g_strdup("enable-caret-browsing"));
    7172    }
    7273
Note: See TracChangeset for help on using the changeset viewer.