Changeset 258621 in webkit


Ignore:
Timestamp:
Mar 17, 2020 8:59:13 PM (4 years ago)
Author:
Devin Rousso
Message:

Web Inspector: Sources: hovering the title of an object preview popup for a DOM node doesn't highlight it
https://bugs.webkit.org/show_bug.cgi?id=209159

Reviewed by Timothy Hatcher.

  • UserInterface/Views/SourceCodeTextEditor.js:

(WI.SourceCodeTextEditor.prototype._showPopoverForObject):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r258550 r258621  
     12020-03-17  Devin Rousso  <drousso@apple.com>
     2
     3        Web Inspector: Sources: hovering the title of an object preview popup for a DOM node doesn't highlight it
     4        https://bugs.webkit.org/show_bug.cgi?id=209159
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/Views/SourceCodeTextEditor.js:
     9        (WI.SourceCodeTextEditor.prototype._showPopoverForObject):
     10
    1112020-03-17  Devin Rousso  <drousso@apple.com>
    212
  • trunk/Source/WebInspectorUI/UserInterface/Views/SourceCodeTextEditor.js

    r253591 r258621  
    19421942                    return;
    19431943
     1944                WI.bindInteractionsForNodeToElement(domNode, titleElement, {
     1945                    ignoreClick: true,
     1946                });
     1947
    19441948                var goToButton = titleElement.appendChild(WI.createGoToArrowButton());
    19451949                goToButton.addEventListener("click", function() {
Note: See TracChangeset for help on using the changeset viewer.