Changeset 84141 in webkit


Ignore:
Timestamp:
Apr 18, 2011 7:19:57 AM (13 years ago)
Author:
apavlov@chromium.org
Message:

2011-04-18 Alexander Pavlov <apavlov@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: Need a workaround for bug 58422
https://bugs.webkit.org/show_bug.cgi?id=58780

Instead of the A:before content, the link text is displayed as the A tag content.

  • inspector/front-end/StylesSidebarPane.js: (WebInspector.StylePropertiesSection.linkifyUncopyable): (WebInspector.StylePropertiesSection):
  • inspector/front-end/inspector.css:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r84137 r84141  
     12011-04-18  Alexander Pavlov  <apavlov@chromium.org>
     2
     3        Reviewed by Pavel Feldman.
     4
     5        Web Inspector: Need a workaround for bug 58422
     6        https://bugs.webkit.org/show_bug.cgi?id=58780
     7
     8        Instead of the A:before content, the link text is displayed as the A tag content.
     9
     10        * inspector/front-end/StylesSidebarPane.js:
     11        (WebInspector.StylePropertiesSection.linkifyUncopyable):
     12        (WebInspector.StylePropertiesSection):
     13        * inspector/front-end/inspector.css:
     14
    1152011-04-18  Carlos Garcia Campos  <cgarcia@igalia.com>
    216
  • trunk/Source/WebCore/inspector/front-end/StylesSidebarPane.js

    r82818 r84141  
    636636    {
    637637        var link = WebInspector.linkifyResourceAsNode(url, "resources", line + 1);
    638         link.setAttribute("data-uncopyable", link.textContent);
    639         link.textContent = "";
    640638        return link;
    641639    }
  • trunk/Source/WebCore/inspector/front-end/inspector.css

    r84023 r84141  
    43104310}
    43114311
    4312 .styles-section a::before {
    4313     content: attr(data-uncopyable);
    4314 }
    4315 
    43164312.styles-section .properties {
    43174313    display: none;
Note: See TracChangeset for help on using the changeset viewer.