mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-14 15:37:55 +00:00
7787c89f92
* Add a test-only setter to the center-item XBL binding * add a head.js function to remove plugin permissions for use in cleanup functions * browser_pluginnotification.js - lots of fixes for the core feature tests * Alter test_bug751809 not to assume that clicking the page overlay will directly activate the plugin * Alter browser_CTP_plugins.js because disabled plugins now do show up in the plugin doorhanger * remove browser_CTPScriptPlugin.js and supporting files because we no longer auto-pop based on scripting * fix browser_CTP_drag_drop.js so that active plugins still show the doorhanger icon, and other fixup * fix browser_bug743421.js to expect the doorhanger all the time and activate it correctly * fix browser_bug752516.js to check for doorhanger activation instead of plugin activation * remove browser_bug818009.js and supporting files because they are testing something that no longer exists * alter browser_bug820497.js so that it shows the popup notification before checking .centerActions, since we populate that data lazily now * browser_plugins_added_dynamically.js: remove the "activate all" tests which are no longer relevant and fix the rest to match the new doorhanger structure.
62 lines
2.8 KiB
JavaScript
62 lines
2.8 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
var gTestBrowser = null;
|
|
var gNumPluginBindingsAttached = 0;
|
|
|
|
Components.utils.import("resource://gre/modules/Services.jsm");
|
|
|
|
function test() {
|
|
waitForExplicitFinish();
|
|
registerCleanupFunction(function() {
|
|
Services.prefs.clearUserPref("plugins.click_to_play");
|
|
getTestPlugin().enabledState = Ci.nsIPluginTag.STATE_ENABLED;
|
|
getTestPlugin("Second Test Plug-in").enabledState = Ci.nsIPluginTag.STATE_ENABLED;
|
|
gTestBrowser.removeEventListener("PluginBindingAttached", pluginBindingAttached, true, true);
|
|
gBrowser.removeCurrentTab();
|
|
window.focus();
|
|
});
|
|
|
|
Services.prefs.setBoolPref("plugins.click_to_play", true);
|
|
getTestPlugin().enabledState = Ci.nsIPluginTag.STATE_CLICKTOPLAY;
|
|
getTestPlugin("Second Test Plug-in").enabledState = Ci.nsIPluginTag.STATE_CLICKTOPLAY;
|
|
|
|
gBrowser.selectedTab = gBrowser.addTab();
|
|
gTestBrowser = gBrowser.selectedBrowser;
|
|
gTestBrowser.addEventListener("PluginBindingAttached", pluginBindingAttached, true, true);
|
|
var gHttpTestRoot = getRootDirectory(gTestPath).replace("chrome://mochitests/content/", "http://127.0.0.1:8888/");
|
|
gTestBrowser.contentWindow.location = gHttpTestRoot + "plugin_bug820497.html";
|
|
}
|
|
|
|
function pluginBindingAttached() {
|
|
gNumPluginBindingsAttached++;
|
|
|
|
if (gNumPluginBindingsAttached == 1) {
|
|
var doc = gTestBrowser.contentDocument;
|
|
var testplugin = doc.getElementById("test");
|
|
ok(testplugin, "should have test plugin");
|
|
var secondtestplugin = doc.getElementById("secondtest");
|
|
ok(!secondtestplugin, "should not yet have second test plugin");
|
|
var notification = PopupNotifications.getNotification("click-to-play-plugins", gTestBrowser);
|
|
ok(notification, "should have popup notification");
|
|
// We don't set up the action list until the notification is shown
|
|
notification.reshow();
|
|
is(notification.options.centerActions.length, 1, "should be 1 type of plugin in the popup notification");
|
|
XPCNativeWrapper.unwrap(gTestBrowser.contentWindow).addSecondPlugin();
|
|
} else if (gNumPluginBindingsAttached == 2) {
|
|
var doc = gTestBrowser.contentDocument;
|
|
var testplugin = doc.getElementById("test");
|
|
ok(testplugin, "should have test plugin");
|
|
var secondtestplugin = doc.getElementById("secondtest");
|
|
ok(secondtestplugin, "should have second test plugin");
|
|
var notification = PopupNotifications.getNotification("click-to-play-plugins", gTestBrowser);
|
|
ok(notification, "should have popup notification");
|
|
notification.reshow();
|
|
is(notification.options.centerActions.length, 2, "should be 2 types of plugin in the popup notification");
|
|
finish();
|
|
} else {
|
|
ok(false, "if we've gotten here, something is quite wrong");
|
|
}
|
|
}
|