Title: [167890] trunk/Source/WebKit2
Revision
167890
Author
commit-qu...@webkit.org
Date
2014-04-28 10:27:10 -0700 (Mon, 28 Apr 2014)

Log Message

[X11] Add missing case for mime type application/x-webkit-test-netscape
https://bugs.webkit.org/show_bug.cgi?id=132278

Patch by Krzysztof Wolanski <k.wolan...@samsung.com> on 2014-04-28
Reviewed by Darin Adler.

Case for x-webkit-test-netscape has been omitted along with r167759.

* WebProcess/Plugins/Netscape/NetscapePlugin.cpp:
(WebKit::NetscapePlugin::initialize):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (167889 => 167890)


--- trunk/Source/WebKit2/ChangeLog	2014-04-28 17:26:33 UTC (rev 167889)
+++ trunk/Source/WebKit2/ChangeLog	2014-04-28 17:27:10 UTC (rev 167890)
@@ -1,3 +1,15 @@
+2014-04-28  Krzysztof Wolanski  <k.wolan...@samsung.com>
+
+        [X11] Add missing case for mime type application/x-webkit-test-netscape
+        https://bugs.webkit.org/show_bug.cgi?id=132278
+
+        Reviewed by Darin Adler.
+
+        Case for x-webkit-test-netscape has been omitted along with r167759.
+
+        * WebProcess/Plugins/Netscape/NetscapePlugin.cpp:
+        (WebKit::NetscapePlugin::initialize):
+
 2014-04-28  Zan Dobersek  <zdober...@igalia.com>
 
         [WK2][X11] NetscapePluginModule::scanPlugin() should write UTF-8 strings to stdout

Modified: trunk/Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.cpp (167889 => 167890)


--- trunk/Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.cpp	2014-04-28 17:26:33 UTC (rev 167889)
+++ trunk/Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.cpp	2014-04-28 17:27:10 UTC (rev 167890)
@@ -612,6 +612,9 @@
             paramNames.append("wmode");
             paramValues.append("opaque");
         }
+    } else if (equalIgnoringCase(parameters.mimeType, "application/x-webkit-test-netscape")) {
+        paramNames.append("windowedPlugin");
+        paramValues.append("false");
     }
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to