Changeset 35562

Show
Ignore:
Timestamp:
08/05/08 09:47:22 (4 months ago)
Author:
timothy@apple.com
Message:

Changes the editing behavior in the Inspector to commit changes
when focus is lost, instead of reverting the changes.

https://bugs.webkit.org/show_bug.cgi?id=20279

Reviewed by Adam Roben.

  • page/inspector/inspector.js: (WebInspector.startEditing): Call editingCommitted in blurEventListener instead of editingCancelled.
Location:
trunk/WebCore
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r35561 r35562  
     12008-08-04  Timothy Hatcher  <timothy@apple.com> 
     2 
     3        Changes the editing behavior in the Inspector to commit changes 
     4        when focus is lost, instead of reverting the changes. 
     5 
     6        https://bugs.webkit.org/show_bug.cgi?id=20279 
     7 
     8        Reviewed by Adam Roben. 
     9 
     10        * page/inspector/inspector.js: 
     11        (WebInspector.startEditing): Call editingCommitted in blurEventListener 
     12        instead of editingCancelled. 
     13 
    1142008-08-04  Timothy Hatcher  <timothy@apple.com> 
    215 
  • trunk/WebCore/page/inspector/inspector.js

    r35561 r35562  
    11431143 
    11441144    function blurEventListener() { 
    1145         editingCancelled.call(element); 
     1145        editingCommitted.call(element); 
    11461146    } 
    11471147