Title: [205242] branches/safari-602-branch/Source/WebCore
- Revision
- 205242
- Author
- [email protected]
- Date
- 2016-08-31 00:39:19 -0700 (Wed, 31 Aug 2016)
Log Message
Merge r205184. rdar://problem/27529052
Modified Paths
Diff
Modified: branches/safari-602-branch/Source/WebCore/ChangeLog (205241 => 205242)
--- branches/safari-602-branch/Source/WebCore/ChangeLog 2016-08-31 07:39:16 UTC (rev 205241)
+++ branches/safari-602-branch/Source/WebCore/ChangeLog 2016-08-31 07:39:19 UTC (rev 205242)
@@ -1,5 +1,23 @@
2016-08-31 Babak Shafiei <[email protected]>
+ Merge r205184. rdar://problem/27529052
+
+ 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-31 Babak Shafiei <[email protected]>
+
Merge r205044. rdar://problem/27933564
2016-08-26 Beth Dakin <[email protected]>
Modified: branches/safari-602-branch/Source/WebCore/English.lproj/Localizable.strings (205241 => 205242)
--- branches/safari-602-branch/Source/WebCore/English.lproj/Localizable.strings 2016-08-31 07:39:16 UTC (rev 205241)
+++ branches/safari-602-branch/Source/WebCore/English.lproj/Localizable.strings 2016-08-31 07:39:19 UTC (rev 205242)
@@ -130,6 +130,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: branches/safari-602-branch/Source/WebCore/platform/LocalizedStrings.cpp (205241 => 205242)
--- branches/safari-602-branch/Source/WebCore/platform/LocalizedStrings.cpp 2016-08-31 07:39:16 UTC (rev 205241)
+++ branches/safari-602-branch/Source/WebCore/platform/LocalizedStrings.cpp 2016-08-31 07:39:19 UTC (rev 205242)
@@ -1201,6 +1201,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: branches/safari-602-branch/Source/WebCore/platform/LocalizedStrings.h (205241 => 205242)
--- branches/safari-602-branch/Source/WebCore/platform/LocalizedStrings.h 2016-08-31 07:39:16 UTC (rev 205241)
+++ branches/safari-602-branch/Source/WebCore/platform/LocalizedStrings.h 2016-08-31 07:39:19 UTC (rev 205242)
@@ -285,6 +285,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