Changeset 212236 in webkit


Ignore:
Timestamp:
Feb 13, 2017 11:14:46 AM (7 years ago)
Author:
Matt Baker
Message:

REGRESSION(r188138): Web Inspector: cannot edit next/previous DOM attribute by using tab/shift-tab
https://bugs.webkit.org/show_bug.cgi?id=168120
<rdar://problem/30466065>

Reviewed by Joseph Pecoraro.

DOMTreeElement's attribute editing committed handler shouldn't early return
when a moveDirection has been specified.

  • UserInterface/Views/DOMTreeElement.js:
Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r212226 r212236  
     12017-02-13  Matt Baker  <mattbaker@apple.com>
     2
     3        REGRESSION(r188138): Web Inspector: cannot edit next/previous DOM attribute by using tab/shift-tab
     4        https://bugs.webkit.org/show_bug.cgi?id=168120
     5        <rdar://problem/30466065>
     6
     7        Reviewed by Joseph Pecoraro.
     8
     9        DOMTreeElement's attribute editing committed handler shouldn't early return
     10        when a `moveDirection` has been specified.
     11
     12        * UserInterface/Views/DOMTreeElement.js:
     13
    1142017-02-12  Brian Burg  <bburg@apple.com>
    215
  • trunk/Source/WebInspectorUI/UserInterface/Views/DOMTreeElement.js

    r209855 r212236  
    961961        this._editing = false;
    962962
    963         if (newText === oldText)
     963        if (!moveDirection && newText === oldText)
    964964            return;
    965965
Note: See TracChangeset for help on using the changeset viewer.