Changeset 55998 in webkit


Ignore:
Timestamp:
Mar 15, 2010 8:54:38 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-15 Tony Chang <tony@chromium.org>

Reviewed by Darin Adler.

option-pageup/down should move cursor on chromium mac
https://bugs.webkit.org/show_bug.cgi?id=36108

Remove waitUntilDone/notifyDone from the layout test, it's not needed
and causes timeouts on failure.

  • editing/input/option-page-up-down.html:

2010-03-15 Tony Chang <tony@chromium.org>

Reviewed by Darin Adler.

option-pageup/down should move cursor on chromium mac
https://bugs.webkit.org/show_bug.cgi?id=36108

  • src/EditorClientImpl.cpp: (WebKit::):
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r55995 r55998  
     12010-03-15  Tony Chang  <tony@chromium.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        option-pageup/down should move cursor on chromium mac
     6        https://bugs.webkit.org/show_bug.cgi?id=36108
     7
     8        Remove waitUntilDone/notifyDone from the layout test, it's not needed
     9        and causes timeouts on failure.
     10
     11        * editing/input/option-page-up-down.html:
     12
    1132010-03-12  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
    214
  • trunk/LayoutTests/editing/input/option-page-up-down.html

    r55566 r55998  
    11<script>
    2 if (window.layoutTestController) {
     2if (window.layoutTestController)
    33    layoutTestController.dumpAsText();
    4     layoutTestController.waitUntilDone();
    5 }
    64
    75function runTest()
     
    3735
    3836    document.getElementById("results").innerText = "PASS";
    39 
    40     if (window.layoutTestController)
    41         window.layoutTestController.notifyDone();
    4237}
    4338</script>
  • trunk/WebKit/chromium/ChangeLog

    r55952 r55998  
     12010-03-15  Tony Chang  <tony@chromium.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        option-pageup/down should move cursor on chromium mac
     6        https://bugs.webkit.org/show_bug.cgi?id=36108
     7
     8        * src/EditorClientImpl.cpp:
     9        (WebKit::):
     10
    1112010-03-13  Eric Roman  <eroman@chromium.org>
    212
  • trunk/WebKit/chromium/src/EditorClientImpl.cpp

    r55219 r55998  
    414414    { VKEY_DOWN,   ShiftKey,           "MoveDownAndModifySelection"           },
    415415    { VKEY_NEXT,   ShiftKey,           "MovePageDownAndModifySelection"       },
     416#if !OS(DARWIN)
    416417    { VKEY_PRIOR,  0,                  "MovePageUp"                           },
    417418    { VKEY_NEXT,   0,                  "MovePageDown"                         },
     419#endif
    418420    { VKEY_HOME,   0,                  "MoveToBeginningOfLine"                },
    419421    { VKEY_HOME,   ShiftKey,
     
    423425    { VKEY_LEFT,   CommandKey | ShiftKey,
    424426      "MoveToBeginningOfLineAndModifySelection"                               },
     427    { VKEY_PRIOR,  OptionKey,          "MovePageUp"                           },
     428    { VKEY_NEXT,   OptionKey,          "MovePageDown"                         },
    425429#endif
    426430#if OS(DARWIN)
Note: See TracChangeset for help on using the changeset viewer.