Changeset 35562
- Timestamp:
- 08/05/08 09:47:22 (4 months ago)
- Location:
- trunk/WebCore
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
page/inspector/inspector.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r35561 r35562 1 2008-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 1 14 2008-08-04 Timothy Hatcher <timothy@apple.com> 2 15 -
trunk/WebCore/page/inspector/inspector.js
r35561 r35562 1143 1143 1144 1144 function blurEventListener() { 1145 editingC ancelled.call(element);1145 editingCommitted.call(element); 1146 1146 } 1147 1147