diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-25 15:07:00 -0500 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 12:55:19 +0200 |
commit | eb70e6e3d0bff11c25f14b1196025791bf2308fb (patch) | |
tree | 5ef4ce17db83c74d7b05ec12c8f59e095a6dd5bd /toolkit/content/tests/chrome/bug331215_window.xul | |
parent | 32ead795290b3399d56b4708fc75b77d296f6a1a (diff) | |
download | UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar.gz UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar.lz UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar.xz UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.zip |
Issue #439 - Remove tests from toolkit/
Diffstat (limited to 'toolkit/content/tests/chrome/bug331215_window.xul')
-rw-r--r-- | toolkit/content/tests/chrome/bug331215_window.xul | 102 |
1 files changed, 0 insertions, 102 deletions
diff --git a/toolkit/content/tests/chrome/bug331215_window.xul b/toolkit/content/tests/chrome/bug331215_window.xul deleted file mode 100644 index 757ce61b8..000000000 --- a/toolkit/content/tests/chrome/bug331215_window.xul +++ /dev/null @@ -1,102 +0,0 @@ -<?xml version="1.0"?> - -<!-- 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/. --> - -<?xml-stylesheet href="chrome://global/skin" type="text/css"?> -<?xml-stylesheet - href="chrome://mochikit/content/tests/SimpleTest/test.css" - type="text/css"?> - -<window id="331215test" - xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" - width="600" - height="600" - onload="SimpleTest.executeSoon(startTest);" - title="331215 test"> - - <script type="application/javascript"><![CDATA[ - const {interfaces: Ci, classes: Cc, results: Cr, utils: Cu} = Components; - Cu.import("resource://gre/modules/Task.jsm"); - Cu.import("resource://testing-common/BrowserTestUtils.jsm"); - Cu.import("resource://testing-common/ContentTask.jsm"); - ContentTask.setTestScope(window.opener.wrappedJSObject); - - var gFindBar = null; - var gBrowser; - - var imports = ["SimpleTest", "ok", "info"]; - for (var name of imports) { - window[name] = window.opener.wrappedJSObject[name]; - } - SimpleTest.requestLongerTimeout(2); - - function startTest() { - Task.spawn(function* () { - gFindBar = document.getElementById("FindToolbar"); - for (let browserId of ["content", "content-remote"]) { - yield startTestWithBrowser(browserId); - } - }).then(() => { - window.close(); - SimpleTest.finish(); - }); - } - - function* startTestWithBrowser(browserId) { - info("Starting test with browser '" + browserId + "'"); - gBrowser = document.getElementById(browserId); - gFindBar.browser = gBrowser; - let promise = BrowserTestUtils.browserLoaded(gBrowser); - gBrowser.loadURI("data:text/plain,latest"); - yield promise; - yield onDocumentLoaded(); - } - - function* onDocumentLoaded() { - document.getElementById("cmd_find").doCommand(); - yield promiseEnterStringIntoFindField("test"); - document.commandDispatcher - .getControllerForCommand("cmd_moveTop") - .doCommand("cmd_moveTop"); - yield promiseEnterStringIntoFindField("l"); - ok(gFindBar._findField.getAttribute("status") == "notfound", - "Findfield status attribute should have been 'notfound' after entering test"); - yield promiseEnterStringIntoFindField("a"); - ok(gFindBar._findField.getAttribute("status") != "notfound", - "Findfield status attribute should not have been 'notfound' after entering latest"); - } - - function promiseEnterStringIntoFindField(aString) { - return new Promise(resolve => { - let listener = { - onFindResult: function(result) { - if (result.result == Ci.nsITypeAheadFind.FIND_FOUND && result.searchString != aString) - return; - gFindBar.browser.finder.removeResultListener(listener); - resolve(); - } - }; - gFindBar.browser.finder.addResultListener(listener); - - for (let c of aString) { - let code = c.charCodeAt(0); - let ev = new KeyboardEvent("keypress", { - keyCode: code, - charCode: code, - bubbles: true - }); - gFindBar._findField.inputField.dispatchEvent(ev); - } - }); - } - ]]></script> - - <commandset> - <command id="cmd_find" oncommand="document.getElementById('FindToolbar').onFindCommand();"/> - </commandset> - <browser type="content-primary" flex="1" id="content" src="about:blank"/> - <browser type="content-primary" flex="1" id="content-remote" remote="true" src="about:blank"/> - <findbar id="FindToolbar" browserid="content"/> -</window> |