mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-03-13 20:17:00 +00:00
24 lines
779 B
JavaScript
24 lines
779 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
// Tests that source URLs are abbreviated properly for display on the right-
|
|
// hand side of the Web Console.
|
|
|
|
"use strict";
|
|
|
|
function test() {
|
|
testAbbreviation("http://example.com/x.js", "x.js");
|
|
testAbbreviation("http://example.com/foo/bar/baz/boo.js", "boo.js");
|
|
testAbbreviation("http://example.com/foo/bar/", "bar");
|
|
testAbbreviation("http://example.com/foo.js?bar=1&baz=2", "foo.js");
|
|
testAbbreviation("http://example.com/foo/?bar=1&baz=2", "foo");
|
|
|
|
finishTest();
|
|
}
|
|
|
|
function testAbbreviation(aFullURL, aAbbreviatedURL) {
|
|
is(WebConsoleUtils.abbreviateSourceURL(aFullURL), aAbbreviatedURL, aFullURL +
|
|
" is abbreviated to " + aAbbreviatedURL);
|
|
}
|
|
|