Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* vim: set ts=2 et sw=2 tw=80: */ |
michael@0 | 2 | /* Any copyright is dedicated to the Public Domain. |
michael@0 | 3 | http://creativecommons.org/publicdomain/zero/1.0/ */ |
michael@0 | 4 | |
michael@0 | 5 | "use strict"; |
michael@0 | 6 | |
michael@0 | 7 | const HOST = 'mochi.test:8888'; |
michael@0 | 8 | const URI = "http://" + HOST + "/browser/browser/devtools/sourceeditor/test/codemirror.html"; |
michael@0 | 9 | |
michael@0 | 10 | function test() { |
michael@0 | 11 | requestLongerTimeout(3); |
michael@0 | 12 | waitForExplicitFinish(); |
michael@0 | 13 | |
michael@0 | 14 | let tab = gBrowser.addTab(); |
michael@0 | 15 | gBrowser.selectedTab = tab; |
michael@0 | 16 | |
michael@0 | 17 | let browser = gBrowser.getBrowserForTab(tab); |
michael@0 | 18 | browser.loadURI(URI); |
michael@0 | 19 | |
michael@0 | 20 | function check() { |
michael@0 | 21 | var win = browser.contentWindow.wrappedJSObject; |
michael@0 | 22 | var doc = win.document; |
michael@0 | 23 | var out = doc.getElementById("status"); |
michael@0 | 24 | if (out && !win.mozilla_setStatus) |
michael@0 | 25 | win.mozilla_setStatus = codeMirror_setStatus; |
michael@0 | 26 | |
michael@0 | 27 | if (!out || !out.classList.contains("done")) |
michael@0 | 28 | return void setTimeout(check, 100); |
michael@0 | 29 | |
michael@0 | 30 | ok(!win.failed, "CodeMirror tests all passed"); |
michael@0 | 31 | win.mozilla_setStatus = null; |
michael@0 | 32 | |
michael@0 | 33 | while (gBrowser.tabs.length > 1) gBrowser.removeCurrentTab(); |
michael@0 | 34 | finish(); |
michael@0 | 35 | } |
michael@0 | 36 | |
michael@0 | 37 | setTimeout(check, 100); |
michael@0 | 38 | } |