blob: 223d92881583ec5eaca243b6ba067c64a96c6963 [file] [log] [blame]
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Installed Plug-ins</title>
</head>
<body>
<script type="application/x-javascript">
if (window.layoutTestController)
layoutTestController.dumpAsText()
var plugins = navigator.plugins;
plugins.refresh(false); // Supposedly helps if new plug-ins were added.
var foundTestPlugin = false;
for (var pi = 0; pi != plugins.length; pi++) {
var plugin = plugins[pi];
// We can only guarantee that the Test PlugIn is installed.
if (plugin.name != "WebKit Test PlugIn")
continue;
else
foundTestPlugin = true;
document.writeln("<p>Name: " + plugin.name + "<\/p>");
document.writeln("<p>Description: " + plugin.description + "<\/p>");
document.writeln("<p>Filename: " + plugin.filename + "<\/p>");
document.writeln("<p>Mime Types:<\/p>");
for (var mi = 0; mi != plugin.length; ++mi) {
document.writeln("<p>Type: " + plugin[mi].type + "<\/p>");
document.writeln("<p>Description: " + plugin[mi].description + "<\/p>");
document.writeln("<p>Suffixes: " + plugin[mi].suffixes + "<\/p>");
document.writeln("<br>");
}
}
if (!foundTestPlugin)
document.writeln("<p>FAILURE! (Failed to find netscape test plugin)<\/p>");
</script>
</body>
</html>