Title: [205184] trunk/Source/WebCore
Revision
205184
Author
[email protected]
Date
2016-08-30 10:26:13 -0700 (Tue, 30 Aug 2016)

Log Message

Exit fullscreen button in fullscreen media playback needs an accessibility string
https://bugs.webkit.org/show_bug.cgi?id=161380

Reviewed by Beth Dakin.

Adds an accessibility string for the exit fullscreen button.

* English.lproj/Localizable.strings:
* platform/LocalizedStrings.cpp:
(WebCore::exitFullScreenButtonAccessibilityTitle):
* platform/LocalizedStrings.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (205183 => 205184)


--- trunk/Source/WebCore/ChangeLog	2016-08-30 16:35:48 UTC (rev 205183)
+++ trunk/Source/WebCore/ChangeLog	2016-08-30 17:26:13 UTC (rev 205184)
@@ -1,3 +1,17 @@
+2016-08-30  Wenson Hsieh  <[email protected]>
+
+        Exit fullscreen button in fullscreen media playback needs an accessibility string
+        https://bugs.webkit.org/show_bug.cgi?id=161380
+
+        Reviewed by Beth Dakin.
+
+        Adds an accessibility string for the exit fullscreen button.
+
+        * English.lproj/Localizable.strings:
+        * platform/LocalizedStrings.cpp:
+        (WebCore::exitFullScreenButtonAccessibilityTitle):
+        * platform/LocalizedStrings.h:
+
 2016-08-30  Antti Koivisto  <[email protected]>
 
         Remove StylePendingImage

Modified: trunk/Source/WebCore/English.lproj/Localizable.strings (205183 => 205184)


--- trunk/Source/WebCore/English.lproj/Localizable.strings	2016-08-30 16:35:48 UTC (rev 205183)
+++ trunk/Source/WebCore/English.lproj/Localizable.strings	2016-08-30 17:26:13 UTC (rev 205184)
@@ -133,6 +133,9 @@
 /* Option in segmented control for inserting a bulleted list in text editing */
 "Bulleted list" = "Bulleted list";
 
+/* Exit fullscreen button in fullscreen media controls */
+"Exit Fullscreen" = "Exit Fullscreen";
+
 /* menu item title for phone number */
 "Call Using iPhone:" = "Call Using iPhone:";
 

Modified: trunk/Source/WebCore/platform/LocalizedStrings.cpp (205183 => 205184)


--- trunk/Source/WebCore/platform/LocalizedStrings.cpp	2016-08-30 16:35:48 UTC (rev 205183)
+++ trunk/Source/WebCore/platform/LocalizedStrings.cpp	2016-08-30 17:26:13 UTC (rev 205184)
@@ -1206,6 +1206,11 @@
 {
     return WEB_UI_STRING("Numbered list", "Option in segmented control for inserting a numbered list in text editing");
 }
+
+String exitFullScreenButtonAccessibilityTitle()
+{
+    return WEB_UI_STRING("Exit fullscreen", "Button for exiting fullscreen when in fullscreen media playback");
+}
 #endif // PLATFORM(MAC)
 
 } // namespace WebCore

Modified: trunk/Source/WebCore/platform/LocalizedStrings.h (205183 => 205184)


--- trunk/Source/WebCore/platform/LocalizedStrings.h	2016-08-30 16:35:48 UTC (rev 205183)
+++ trunk/Source/WebCore/platform/LocalizedStrings.h	2016-08-30 17:26:13 UTC (rev 205184)
@@ -286,6 +286,7 @@
     WEBCORE_EXPORT String insertListTypeBulletedAccessibilityTitle();
     WEBCORE_EXPORT String insertListTypeNumbered();
     WEBCORE_EXPORT String insertListTypeNumberedAccessibilityTitle();
+    WEBCORE_EXPORT String exitFullScreenButtonAccessibilityTitle();
 #endif
 
 #define WEB_UI_STRING(string, description) WebCore::localizedString(string)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to