RESOLVED FIXED Bug 131569
[GTK] REGRESSION(167145): Many media tests fail
https://bugs.webkit.org/show_bug.cgi?id=131569
Summary [GTK] REGRESSION(167145): Many media tests fail
Martin Robinson
Reported 2014-04-11 16:02:18 PDT
Looks like we need to pull in the localized string JavaScript file
Attachments
Patch (2.13 KB, patch)
2014-04-11 16:05 PDT, Martin Robinson
no flags
Patch (2.15 KB, patch)
2014-04-11 16:37 PDT, Martin Robinson
no flags
Brent Fulgham
Comment 1 2014-04-11 16:04:53 PDT
*** Bug 131570 has been marked as a duplicate of this bug. ***
Martin Robinson
Comment 2 2014-04-11 16:05:33 PDT
Brent Fulgham
Comment 3 2014-04-11 16:08:29 PDT
I think we need the following changes: 1. Pull in the JS with the strings in it: --- platform/gtk/RenderThemeGtk.cpp (revision 167146) +++ platform/gtk/RenderThemeGtk.cpp (working copy) @@ -763,6 +763,7 @@ String RenderThemeGtk::mediaControlsScript() { StringBuilder scriptBuilder; + scriptBuilder.append(mediaControlsLocalizedStringsJavaScript, sizeof(mediaControlsLocalizedStringsJavaScript)); scriptBuilder.append(mediaControlsAppleJavaScript, sizeof(mediaControlsAppleJavaScript)); scriptBuilder.append(mediaControlsGtkJavaScript, sizeof(mediaControlsGtkJavaScript)); return scriptBuilder.toString(); 2. Treat mediaControlsLocalizedStrings as a USER_AGENT_SCRIPT: --- PlatformGTK.cmake (revision 167146) +++ PlatformGTK.cmake (working copy) @@ -259,6 +259,7 @@ ) set(WebCore_USER_AGENT_SCRIPTS + ${WEBCORE_DIR}/English.lproj/mediaControlsLocalizedStrings.js ${WEBCORE_DIR}/Modules/mediacontrols/mediaControlsApple.js ${WEBCORE_DIR}/Modules/mediacontrols/mediaControlsGtk.js ) 3. Make sure the mediaControlsLocalizedStrings.js file gets pulled into the UserAgentGeneratedScripts.cpp.
Brent Fulgham
Comment 4 2014-04-11 16:09:07 PDT
Comment on attachment 229174 [details] Patch Yes -- this looks like what I was thinking. r+ once you confirm the bots are happy.
Martin Robinson
Comment 5 2014-04-11 16:37:47 PDT
Xabier Rodríguez Calvar
Comment 6 2014-04-11 16:46:45 PDT
*** Bug 131568 has been marked as a duplicate of this bug. ***
Xabier Rodríguez Calvar
Comment 7 2014-04-11 16:48:45 PDT
Please, fix EFL too with a similar patch.
Martin Robinson
Comment 8 2014-04-11 16:49:57 PDT
Note You need to log in before you can comment on or make changes to this bug.