Changeset 205300 in webkit


Ignore:
Timestamp:
Sep 1, 2016 11:19:34 AM (8 years ago)
Author:
BJ Burg
Message:

Web Inspector: tweak one UIString for "reasons for compositing"
https://bugs.webkit.org/show_bug.cgi?id=161495
<rdar://problem/13718387>

Reviewed by Simon Fraser.

Change "Element establishes a stacking context" to "Element may overlap other compositing element".

  • Localizations/en.lproj/localizedStrings.js:
  • UserInterface/Views/LayerTreeDetailsSidebarPanel.js:

(WebInspector.LayerTreeDetailsSidebarPanel.prototype._populateListOfCompositingReasons):
(WebInspector.LayerTreeDetailsSidebarPanel):

Location:
trunk/Source/WebInspectorUI
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r205223 r205300  
     12016-09-01  Brian Burg  <bburg@apple.com>
     2
     3        Web Inspector: tweak one UIString for "reasons for compositing"
     4        https://bugs.webkit.org/show_bug.cgi?id=161495
     5        <rdar://problem/13718387>
     6
     7        Reviewed by Simon Fraser.
     8
     9        Change "Element establishes a stacking context" to "Element may overlap other compositing element".
     10
     11        * Localizations/en.lproj/localizedStrings.js:
     12        * UserInterface/Views/LayerTreeDetailsSidebarPanel.js:
     13        (WebInspector.LayerTreeDetailsSidebarPanel.prototype._populateListOfCompositingReasons):
     14        (WebInspector.LayerTreeDetailsSidebarPanel):
     15
    1162016-08-30  Devin Rousso  <dcrousso+webkit@gmail.com>
    217
  • trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js

    r205089 r205300  
    272272localizedStrings["Element"] = "Element";
    273273localizedStrings["Element clips compositing descendants"] = "Element clips compositing descendants";
    274 localizedStrings["Element establishes a stacking context"] = "Element establishes a stacking context";
    275274localizedStrings["Element has CSS blending applied and composited descendants"] = "Element has CSS blending applied and composited descendants";
    276275localizedStrings["Element has CSS filters applied"] = "Element has CSS filters applied";
     
    297296localizedStrings["Element is masked and composited descendants"] = "Element is masked and composited descendants";
    298297localizedStrings["Element is the root element"] = "Element is the root element";
     298localizedStrings["Element may overlap another compositing element"] = "Element may overlap another compositing element";
    299299localizedStrings["Element overlaps other compositing element"] = "Element overlaps other compositing element";
    300300localizedStrings["Elements"] = "Elements";
  • trunk/Source/WebInspectorUI/UserInterface/Views/LayerTreeDetailsSidebarPanel.js

    r204264 r205300  
    399399            addReason(WebInspector.UIString("Element has “-webkit-overflow-scrolling: touch” style"));
    400400        if (compositingReasons.stacking)
    401             addReason(WebInspector.UIString("Element establishes a stacking context"));
     401            addReason(WebInspector.UIString("Element may overlap another compositing element"));
    402402        if (compositingReasons.overlap)
    403403            addReason(WebInspector.UIString("Element overlaps other compositing element"));
Note: See TracChangeset for help on using the changeset viewer.