diff options
Diffstat (limited to 'browser/base/content/test/browser_bug424101.js')
-rw-r--r-- | browser/base/content/test/browser_bug424101.js | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/browser/base/content/test/browser_bug424101.js b/browser/base/content/test/browser_bug424101.js new file mode 100644 index 000000000..7c9599e69 --- /dev/null +++ b/browser/base/content/test/browser_bug424101.js @@ -0,0 +1,53 @@ +/* Make sure that the context menu appears on form elements */ + +function test() { + waitForExplicitFinish(); + + gBrowser.selectedTab = gBrowser.addTab(); + + gBrowser.selectedBrowser.addEventListener("load", function() { + gBrowser.selectedBrowser.removeEventListener("load", arguments.callee, true); + + let doc = gBrowser.contentDocument; + let testInput = function(type, expected) { + let element = doc.createElement("input"); + element.setAttribute("type", type); + doc.body.appendChild(element); + document.popupNode = element; + + let contentAreaContextMenu = document.getElementById("contentAreaContextMenu"); + let contextMenu = new nsContextMenu(contentAreaContextMenu); + + is(contextMenu.shouldDisplay, expected, "context menu behavior for <input type=" + type + "> is wrong"); + }; + let testElement = function(tag, expected) { + let element = doc.createElement(tag); + doc.body.appendChild(element); + document.popupNode = element; + + let contentAreaContextMenu = document.getElementById("contentAreaContextMenu"); + let contextMenu = new nsContextMenu(contentAreaContextMenu); + + is(contextMenu.shouldDisplay, expected, "context menu behavior for <" + tag + "> is wrong"); + }; + + testInput("text", true); + testInput("password", true); + testInput("image", true); + testInput("button", true); + testInput("submit", true); + testInput("reset", true); + testInput("checkbox", true); + testInput("radio", true); + testElement("button", true); + testElement("select", true); + testElement("option", true); + testElement("optgroup", true); + + // cleanup + document.popupNode = null; + gBrowser.removeCurrentTab(); + finish(); + }, true); + content.location = "data:text/html,test"; +} |