Changeset 122349 in webkit


Ignore:
Timestamp:
Jul 11, 2012 11:42:07 AM (12 years ago)
Author:
zandobersek@gmail.com
Message:

[Gtk] fast/events/keydown-function-keys.html is failing
https://bugs.webkit.org/show_bug.cgi?id=90891

Reviewed by Martin Robinson.

Work around the context menu being shown on F10 key being pressed by
unbiding the key when running tests in DumpRenderTree. The problem
appears when using a recent version of the xkeyboard-config package.

  • DumpRenderTree/gtk/DumpRenderTree.cpp:

(setDefaultsToConsistentStateValuesForTesting):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r122340 r122349  
     12012-07-11  Zan Dobersek  <zandobersek@gmail.com>
     2
     3        [Gtk] fast/events/keydown-function-keys.html is failing
     4        https://bugs.webkit.org/show_bug.cgi?id=90891
     5
     6        Reviewed by Martin Robinson.
     7
     8        Work around the context menu being shown on F10 key being pressed by
     9        unbiding the key when running tests in DumpRenderTree. The problem
     10        appears when using a recent version of the xkeyboard-config package.
     11
     12        * DumpRenderTree/gtk/DumpRenderTree.cpp:
     13        (setDefaultsToConsistentStateValuesForTesting):
     14
    1152012-07-11  No'am Rosenthal  <noam.rosenthal@nokia.com>
    216
  • trunk/Tools/DumpRenderTree/gtk/DumpRenderTree.cpp

    r122256 r122349  
    664664    GtkCssProvider* cssProvider = gtk_css_provider_new();
    665665    gtk_css_provider_load_from_data(cssProvider,
     666                                    "@binding-set NoKeyboardNavigation {        "
     667                                    "   unbind \"<shift>F10\";                  "
     668                                    "}                                          "
    666669                                    " * {                                       "
    667670                                    "   -GtkScrolledWindow-scrollbar-spacing: 0;"
     671                                    "   gtk-key-bindings: NoKeyboardNavigation; "
    668672                                    "}                                          ",
    669673                                    -1, 0);
Note: See TracChangeset for help on using the changeset viewer.