Title: [205300] trunk/Source/WebInspectorUI
Revision
205300
Author
[email protected]
Date
2016-09-01 11:19:34 -0700 (Thu, 01 Sep 2016)

Log 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):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (205299 => 205300)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-09-01 18:08:54 UTC (rev 205299)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-09-01 18:19:34 UTC (rev 205300)
@@ -1,3 +1,18 @@
+2016-09-01  Brian Burg  <[email protected]>
+
+        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):
+
 2016-08-30  Devin Rousso  <[email protected]>
 
         Web Inspector: Remove largest common indentation spacing in debugger popover

Modified: trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js (205299 => 205300)


--- trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js	2016-09-01 18:08:54 UTC (rev 205299)
+++ trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js	2016-09-01 18:19:34 UTC (rev 205300)
@@ -271,7 +271,6 @@
 localizedStrings["Effects"] = "Effects";
 localizedStrings["Element"] = "Element";
 localizedStrings["Element clips compositing descendants"] = "Element clips compositing descendants";
-localizedStrings["Element establishes a stacking context"] = "Element establishes a stacking context";
 localizedStrings["Element has CSS blending applied and composited descendants"] = "Element has CSS blending applied and composited descendants";
 localizedStrings["Element has CSS filters applied"] = "Element has CSS filters applied";
 localizedStrings["Element has CSS filters applied and composited descendants"] = "Element has CSS filters applied and composited descendants";
@@ -296,6 +295,7 @@
 localizedStrings["Element is animated"] = "Element is animated";
 localizedStrings["Element is masked and composited descendants"] = "Element is masked and composited descendants";
 localizedStrings["Element is the root element"] = "Element is the root element";
+localizedStrings["Element may overlap another compositing element"] = "Element may overlap another compositing element";
 localizedStrings["Element overlaps other compositing element"] = "Element overlaps other compositing element";
 localizedStrings["Elements"] = "Elements";
 localizedStrings["Enable Breakpoint"] = "Enable Breakpoint";

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/LayerTreeDetailsSidebarPanel.js (205299 => 205300)


--- trunk/Source/WebInspectorUI/UserInterface/Views/LayerTreeDetailsSidebarPanel.js	2016-09-01 18:08:54 UTC (rev 205299)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/LayerTreeDetailsSidebarPanel.js	2016-09-01 18:19:34 UTC (rev 205300)
@@ -398,7 +398,7 @@
         if (compositingReasons.overflowScrollingTouch)
             addReason(WebInspector.UIString("Element has “-webkit-overflow-scrolling: touch” style"));
         if (compositingReasons.stacking)
-            addReason(WebInspector.UIString("Element establishes a stacking context"));
+            addReason(WebInspector.UIString("Element may overlap another compositing element"));
         if (compositingReasons.overlap)
             addReason(WebInspector.UIString("Element overlaps other compositing element"));
         if (compositingReasons.negativeZIndexChildren)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to