Diff
Modified: trunk/Source/WebInspectorUI/ChangeLog (235256 => 235257)
--- trunk/Source/WebInspectorUI/ChangeLog 2018-08-23 23:19:59 UTC (rev 235256)
+++ trunk/Source/WebInspectorUI/ChangeLog 2018-08-23 23:32:47 UTC (rev 235257)
@@ -1,3 +1,19 @@
+2018-08-23 Brian Burg <[email protected]>
+
+ Web Inspector: fix typos in some compositing reasons
+ https://bugs.webkit.org/show_bug.cgi?id=188905
+ <rdar://problem/43624825>
+
+ Reviewed by Simon Fraser.
+
+ * Localizations/en.lproj/localizedStrings.js:
+ * UserInterface/Views/LayerTreeDetailsSidebarPanel.js:
+ (WI.LayerTreeDetailsSidebarPanel.prototype._populateListOfCompositingReasons):
+ (WI.LayerTreeDetailsSidebarPanel):
+ * UserInterface/Views/Layers3DContentView.js:
+ (WI.Layers3DContentView.prototype._updateReasonsList):
+ (WI.Layers3DContentView):
+
2018-08-23 Devin Rousso <[email protected]>
Web Inspector: support breakpoints for timers and animation-frame events
Modified: trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js (235256 => 235257)
--- trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js 2018-08-23 23:19:59 UTC (rev 235256)
+++ trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js 2018-08-23 23:32:47 UTC (rev 235257)
@@ -358,7 +358,7 @@
localizedStrings["Element has “position: fixed” style"] = "Element has “position: fixed” style";
localizedStrings["Element has “position: sticky” style"] = "Element has “position: sticky” style";
localizedStrings["Element has “transform-style: preserve-3d” style"] = "Element has “transform-style: preserve-3d” style";
-localizedStrings["Element has “will-change” style with includes opacity, transform, transform-style, perspective, filter or backdrop-filter"] = "Element has “will-change” style with includes opacity, transform, transform-style, perspective, filter or backdrop-filter";
+localizedStrings["Element has “will-change” style which includes opacity, transform, transform-style, perspective, filter or backdrop-filter"] = "Element has “will-change” style which includes opacity, transform, transform-style, perspective, filter or backdrop-filter";
localizedStrings["Element is <canvas>"] = "Element is <canvas>";
localizedStrings["Element is <iframe>"] = "Element is <iframe>";
localizedStrings["Element is <video>"] = "Element is <video>";
@@ -365,7 +365,7 @@
localizedStrings["Element is a plug-in"] = "Element is a plug-in";
localizedStrings["Element is a stacking context and has composited descendants with CSS blending applied"] = "Element is a stacking context and has composited descendants with CSS blending applied";
localizedStrings["Element is animated"] = "Element is animated";
-localizedStrings["Element is masked and composited descendants"] = "Element is masked and composited descendants";
+localizedStrings["Element is masked and has composited descendants"] = "Element is masked and has 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";
Modified: trunk/Source/WebInspectorUI/UserInterface/Views/LayerTreeDetailsSidebarPanel.js (235256 => 235257)
--- trunk/Source/WebInspectorUI/UserInterface/Views/LayerTreeDetailsSidebarPanel.js 2018-08-23 23:19:59 UTC (rev 235256)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/LayerTreeDetailsSidebarPanel.js 2018-08-23 23:32:47 UTC (rev 235257)
@@ -425,7 +425,7 @@
if (compositingReasons.opacityWithCompositedDescendants)
addReason(WI.UIString("Element has opacity applied and composited descendants"));
if (compositingReasons.maskWithCompositedDescendants)
- addReason(WI.UIString("Element is masked and composited descendants"));
+ addReason(WI.UIString("Element is masked and has composited descendants"));
if (compositingReasons.reflectionWithCompositedDescendants)
addReason(WI.UIString("Element has a reflection and composited descendants"));
if (compositingReasons.filterWithCompositedDescendants)
@@ -439,7 +439,7 @@
if (compositingReasons.preserve3D)
addReason(WI.UIString("Element has “transform-style: preserve-3d” style"));
if (compositingReasons.willChange)
- addReason(WI.UIString("Element has “will-change” style with includes opacity, transform, transform-style, perspective, filter or backdrop-filter"));
+ addReason(WI.UIString("Element has “will-change” style which includes opacity, transform, transform-style, perspective, filter or backdrop-filter"));
if (compositingReasons.root)
addReason(WI.UIString("Element is the root element"));
if (compositingReasons.blending)
Modified: trunk/Source/WebInspectorUI/UserInterface/Views/Layers3DContentView.js (235256 => 235257)
--- trunk/Source/WebInspectorUI/UserInterface/Views/Layers3DContentView.js 2018-08-23 23:19:59 UTC (rev 235256)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/Layers3DContentView.js 2018-08-23 23:32:47 UTC (rev 235257)
@@ -510,7 +510,7 @@
if (compositingReasons.opacityWithCompositedDescendants)
addReason(WI.UIString("Element has opacity applied and composited descendants"));
if (compositingReasons.maskWithCompositedDescendants)
- addReason(WI.UIString("Element is masked and composited descendants"));
+ addReason(WI.UIString("Element is masked and has composited descendants"));
if (compositingReasons.reflectionWithCompositedDescendants)
addReason(WI.UIString("Element has a reflection and composited descendants"));
if (compositingReasons.filterWithCompositedDescendants)
@@ -524,7 +524,7 @@
if (compositingReasons.preserve3D)
addReason(WI.UIString("Element has “transform-style: preserve-3d” style"));
if (compositingReasons.willChange)
- addReason(WI.UIString("Element has “will-change” style with includes opacity, transform, transform-style, perspective, filter or backdrop-filter"));
+ addReason(WI.UIString("Element has “will-change” style which includes opacity, transform, transform-style, perspective, filter or backdrop-filter"));
if (compositingReasons.root)
addReason(WI.UIString("Element is the root element"));
if (compositingReasons.blending)