forked from mirrors/gecko-dev
70 lines
2.3 KiB
JavaScript
70 lines
2.3 KiB
JavaScript
function test() {
|
|
waitForExplicitFinish();
|
|
testNext();
|
|
}
|
|
|
|
var pairs = [
|
|
["javascript:", ""],
|
|
["javascript:1+1", "1+1"],
|
|
["javascript:document.domain", "document.domain"],
|
|
[" \u0001\u0002\u0003\u0004\u0005\u0006\u0007\u0008\u0009javascript:document.domain", "document.domain"],
|
|
["java\nscript:foo", "foo"],
|
|
["java\tscript:foo", "foo"],
|
|
["http://\nexample.com", "http://example.com"],
|
|
["http://\nexample.com\n", "http://example.com"],
|
|
["data:text/html,<body>hi</body>", "data:text/html,<body>hi</body>"],
|
|
["javaScript:foopy", "foopy"],
|
|
["javaScript:javaScript:alert('hi')", "alert('hi')"],
|
|
// Nested things get confusing because some things don't parse as URIs:
|
|
["javascript:javascript:alert('hi!')", "alert('hi!')"],
|
|
["data:data:text/html,<body>hi</body>", "data:data:text/html,<body>hi</body>"],
|
|
["javascript:data:javascript:alert('hi!')", "data:javascript:alert('hi!')"],
|
|
["javascript:data:text/html,javascript:alert('hi!')", "data:text/html,javascript:alert('hi!')"],
|
|
["data:data:text/html,javascript:alert('hi!')", "data:data:text/html,javascript:alert('hi!')"],
|
|
];
|
|
|
|
let supportsNullBytes = AppConstants.platform == "macosx";
|
|
// Note that \u000d (\r) is missing here; we test it separately because it
|
|
// makes the test sad on Windows.
|
|
let gobbledygook = "\u000a\u000b\u000c\u000e\u000f\u0010\u0011\u0012\u0013\u0014javascript:foo";
|
|
if (supportsNullBytes) {
|
|
gobbledygook = "\u0000" + gobbledygook;
|
|
}
|
|
pairs.push([gobbledygook, "foo"]);
|
|
|
|
let supportsReturnWithoutNewline = AppConstants.platform != "win";
|
|
if (supportsReturnWithoutNewline) {
|
|
pairs.push(["java\rscript:foo", "foo"]);
|
|
}
|
|
|
|
var clipboardHelper = Cc["@mozilla.org/widget/clipboardhelper;1"].getService(Ci.nsIClipboardHelper);
|
|
|
|
function paste(input, cb) {
|
|
waitForClipboard(input, function() {
|
|
clipboardHelper.copyString(input);
|
|
}, function() {
|
|
document.commandDispatcher.getControllerForCommand("cmd_paste").doCommand("cmd_paste");
|
|
cb();
|
|
}, function() {
|
|
ok(false, "Failed to copy string '" + input + "' to clipboard");
|
|
cb();
|
|
});
|
|
}
|
|
|
|
function testNext() {
|
|
gURLBar.value = "";
|
|
if (!pairs.length) {
|
|
finish();
|
|
return;
|
|
}
|
|
|
|
let [inputValue, expectedURL] = pairs.shift();
|
|
|
|
gURLBar.focus();
|
|
paste(inputValue, function() {
|
|
is(gURLBar.textValue, expectedURL, "entering '" + inputValue + "' strips relevant bits.");
|
|
|
|
setTimeout(testNext, 0);
|
|
});
|
|
}
|
|
|