browser/devtools/netmonitor/test/browser_net_cyrillic-02.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

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 * when loaded directly from an HTML page.
michael@0 7 */
michael@0 8
michael@0 9 function test() {
michael@0 10 initNetMonitor(CYRILLIC_URL).then(([aTab, aDebuggee, aMonitor]) => {
michael@0 11 info("Starting test... ");
michael@0 12
michael@0 13 let { document, Editor, NetMonitorView } = aMonitor.panelWin;
michael@0 14 let { RequestsMenu } = NetMonitorView;
michael@0 15
michael@0 16 RequestsMenu.lazyUpdate = false;
michael@0 17
michael@0 18 waitForNetworkEvents(aMonitor, 1).then(() => {
michael@0 19 verifyRequestItemTarget(RequestsMenu.getItemAtIndex(0),
michael@0 20 "GET", CYRILLIC_URL, {
michael@0 21 status: 200,
michael@0 22 statusText: "OK"
michael@0 23 });
michael@0 24
michael@0 25 EventUtils.sendMouseEvent({ type: "mousedown" },
michael@0 26 document.getElementById("details-pane-toggle"));
michael@0 27 EventUtils.sendMouseEvent({ type: "mousedown" },
michael@0 28 document.querySelectorAll("#details-pane tab")[3]);
michael@0 29
michael@0 30 let RESPONSE_BODY_DISPLAYED = aMonitor.panelWin.EVENTS.RESPONSE_BODY_DISPLAYED;
michael@0 31 waitFor(aMonitor.panelWin, RESPONSE_BODY_DISPLAYED).then(() =>
michael@0 32 NetMonitorView.editor("#response-content-textarea")
michael@0 33 ).then((aEditor) => {
michael@0 34 is(aEditor.getText().indexOf("\u044F"), 302, // я
michael@0 35 "The text shown in the source editor is incorrect.");
michael@0 36 is(aEditor.getMode(), Editor.modes.html,
michael@0 37 "The mode active in the source editor is incorrect.");
michael@0 38
michael@0 39 teardown(aMonitor).then(finish);
michael@0 40 });
michael@0 41 });
michael@0 42
michael@0 43 aDebuggee.location.reload();
michael@0 44 });
michael@0 45 }

mercurial