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 | /* Any copyright is dedicated to the Public Domain. |
michael@0 | 2 | http://creativecommons.org/publicdomain/zero/1.0/ */ |
michael@0 | 3 | |
michael@0 | 4 | /** |
michael@0 | 5 | * Tests if cyrillic text is rendered correctly in the source editor. |
michael@0 | 6 | */ |
michael@0 | 7 | |
michael@0 | 8 | function test() { |
michael@0 | 9 | initNetMonitor(CYRILLIC_URL).then(([aTab, aDebuggee, aMonitor]) => { |
michael@0 | 10 | info("Starting test... "); |
michael@0 | 11 | |
michael@0 | 12 | let { document, Editor, NetMonitorView } = aMonitor.panelWin; |
michael@0 | 13 | let { RequestsMenu } = NetMonitorView; |
michael@0 | 14 | |
michael@0 | 15 | RequestsMenu.lazyUpdate = false; |
michael@0 | 16 | |
michael@0 | 17 | waitForNetworkEvents(aMonitor, 1).then(() => { |
michael@0 | 18 | verifyRequestItemTarget(RequestsMenu.getItemAtIndex(0), |
michael@0 | 19 | "GET", CONTENT_TYPE_SJS + "?fmt=txt", { |
michael@0 | 20 | status: 200, |
michael@0 | 21 | statusText: "DA DA DA" |
michael@0 | 22 | }); |
michael@0 | 23 | |
michael@0 | 24 | EventUtils.sendMouseEvent({ type: "mousedown" }, |
michael@0 | 25 | document.getElementById("details-pane-toggle")); |
michael@0 | 26 | EventUtils.sendMouseEvent({ type: "mousedown" }, |
michael@0 | 27 | document.querySelectorAll("#details-pane tab")[3]); |
michael@0 | 28 | |
michael@0 | 29 | let RESPONSE_BODY_DISPLAYED = aMonitor.panelWin.EVENTS.RESPONSE_BODY_DISPLAYED; |
michael@0 | 30 | waitFor(aMonitor.panelWin, RESPONSE_BODY_DISPLAYED).then(() => |
michael@0 | 31 | NetMonitorView.editor("#response-content-textarea") |
michael@0 | 32 | ).then((aEditor) => { |
michael@0 | 33 | is(aEditor.getText().indexOf("\u044F"), 26, // я |
michael@0 | 34 | "The text shown in the source editor is incorrect."); |
michael@0 | 35 | is(aEditor.getMode(), Editor.modes.text, |
michael@0 | 36 | "The mode active in the source editor is incorrect."); |
michael@0 | 37 | |
michael@0 | 38 | teardown(aMonitor).then(finish); |
michael@0 | 39 | }); |
michael@0 | 40 | }); |
michael@0 | 41 | |
michael@0 | 42 | aDebuggee.performRequests(); |
michael@0 | 43 | }); |
michael@0 | 44 | } |