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.
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=2 et sw=2 tw=80: */
3 /* Any copyright is dedicated to the Public Domain.
4 http://creativecommons.org/publicdomain/zero/1.0/ */
6 "use strict";
8 function test() {
9 let testcases = [
10 ["example", {}, "example"],
11 ["example", {ctrlKey: true}, "http://www.example.com/"],
12 ["example.org", {ctrlKey: true}, "example.org"],
13 ["example", {shiftKey: true}, "http://www.example.net/"],
14 ["example", {shiftKey: true, ctrlKey: true}, "http://www.example.org/"],
15 [" example ", {ctrlKey: true}, "http://www.example.com/"],
16 [" example/a ", {ctrlKey: true}, "http://www.example.com/a"]
17 ];
18 for (let [input, modifiers, result] of testcases) {
19 is(BrowserUI._edit._canonizeURL(input, modifiers), result, input + " -> " + result);
20 }
21 }