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

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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 }

mercurial