browser/metro/base/tests/mochitest/browser_canonizeURL.js

branch
TOR_BUG_9701
changeset 15
b8a032363ba2
equal deleted inserted replaced
-1:000000000000 0:8c9c1891aac1
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/ */
5
6 "use strict";
7
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 }

mercurial