Title: [248934] branches/safari-608-branch/Source/WebInspectorUI
Revision
248934
Author
bshaf...@apple.com
Date
2019-08-20 22:59:53 -0700 (Tue, 20 Aug 2019)

Log Message

Cherry-pick r247867. rdar://problem/54543378

    Web Inspector: AXI: Audit: Typo of "some" as "somee"
    https://bugs.webkit.org/show_bug.cgi?id=200166

    Patch by Greg Doolittle <g...@apple.com> on 2019-07-26
    Reviewed by Devin Rousso.

    * Localizations/en.lproj/localizedStrings.js:
    * UserInterface/Controllers/AuditManager.js:
    (WI.AuditManager.prototype._addDefaultTests):
    (WI.AuditManager):

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@247867 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-608-branch/Source/WebInspectorUI/ChangeLog (248933 => 248934)


--- branches/safari-608-branch/Source/WebInspectorUI/ChangeLog	2019-08-21 05:25:34 UTC (rev 248933)
+++ branches/safari-608-branch/Source/WebInspectorUI/ChangeLog	2019-08-21 05:59:53 UTC (rev 248934)
@@ -1,3 +1,32 @@
+2019-08-20  Babak Shafiei  <bshaf...@apple.com>
+
+        Cherry-pick r247867. rdar://problem/54543378
+
+    Web Inspector: AXI: Audit: Typo of "some" as "somee"
+    https://bugs.webkit.org/show_bug.cgi?id=200166
+    
+    Patch by Greg Doolittle <g...@apple.com> on 2019-07-26
+    Reviewed by Devin Rousso.
+    
+    * Localizations/en.lproj/localizedStrings.js:
+    * UserInterface/Controllers/AuditManager.js:
+    (WI.AuditManager.prototype._addDefaultTests):
+    (WI.AuditManager):
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@247867 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2019-07-26  Greg Doolittle  <g...@apple.com>
+
+            Web Inspector: AXI: Audit: Typo of "some" as "somee"
+            https://bugs.webkit.org/show_bug.cgi?id=200166
+
+            Reviewed by Devin Rousso.
+
+            * Localizations/en.lproj/localizedStrings.js:
+            * UserInterface/Controllers/AuditManager.js:
+            (WI.AuditManager.prototype._addDefaultTests):
+            (WI.AuditManager):
+
 2019-07-15  Devin Rousso  <drou...@apple.com>
 
         Web Inspector: Device Settings: update Safari user agent from 12.2 to 13.0

Modified: branches/safari-608-branch/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js (248933 => 248934)


--- branches/safari-608-branch/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js	2019-08-21 05:25:34 UTC (rev 248933)
+++ branches/safari-608-branch/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js	2019-08-21 05:59:53 UTC (rev 248934)
@@ -1110,7 +1110,7 @@
 localizedStrings["This test will pass with all of the child nodes of the <body> element in the accessibility tree."] = "This test will pass with all of the child nodes of the <body> element in the accessibility tree.";
 localizedStrings["This test will pass with data indicating whether the <body> element has any click event listeners."] = "This test will pass with data indicating whether the <body> element has any click event listeners.";
 localizedStrings["This test will pass with data indicating whether the <body> element has any event listeners."] = "This test will pass with data indicating whether the <body> element has any event listeners.";
-localizedStrings["This test will pass with somee basic information about each resource."] = "This test will pass with somee basic information about each resource.";
+localizedStrings["This test will pass with some basic information about each resource."] = "This test will pass with some basic information about each resource.";
 localizedStrings["This test will pass with the active descendant (\u0022%s\u0022) of the <body> element, if it exists."] = "This test will pass with the active descendant (\u0022%s\u0022) of the <body> element, if it exists.";
 localizedStrings["This test will pass with the contents of the main resource."] = "This test will pass with the contents of the main resource.";
 localizedStrings["This test will pass with the node that would handle mouse events for the <body> element, if applicable."] = "This test will pass with the node that would handle mouse events for the <body> element, if applicable.";

Modified: branches/safari-608-branch/Source/WebInspectorUI/UserInterface/Controllers/AuditManager.js (248933 => 248934)


--- branches/safari-608-branch/Source/WebInspectorUI/UserInterface/Controllers/AuditManager.js	2019-08-21 05:25:34 UTC (rev 248933)
+++ branches/safari-608-branch/Source/WebInspectorUI/UserInterface/Controllers/AuditManager.js	2019-08-21 05:59:53 UTC (rev 248934)
@@ -1032,7 +1032,7 @@
                         new WI.AuditTestCase("hasEventListeners-click", removeWhitespace(hasEventListenersClick), {description: WI.UIString("This test will pass with data indicating whether the <body> element has any click event listeners."), supports: 3}),
                     ], {description: WI.UIString("These tests demonstrate how to use %s to get information about DOM nodes.").format(WI.unlocalizedString("WebInspectorAudit.DOM")), supports: 1}),
                     new WI.AuditTestGroup(WI.UIString("Resources"), [
-                        new WI.AuditTestCase("getResources", removeWhitespace(getResources), {description: WI.UIString("This test will pass with somee basic information about each resource."), supports: 3}),
+                        new WI.AuditTestCase("getResources", removeWhitespace(getResources), {description: WI.UIString("This test will pass with some basic information about each resource."), supports: 3}),
                         new WI.AuditTestCase("getResourceContent", removeWhitespace(getResourceContent), {description: WI.UIString("This test will pass with the contents of the main resource."), supports: 3}),
                     ], {description: WI.UIString("These tests demonstrate how to use %s to get information about loaded resources.").format(WI.unlocalizedString("WebInspectorAudit.Resources")), supports: 2}),
                 ], {description: WI.UIString("These tests demonstrate how to use %s to access information not normally available to _javascript_.").format(WI.unlocalizedString("WebInspectorAudit")), supports: 1}),
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to