mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 21:58:41 +02:00
MozReview-Commit-ID: 6tv0Z06CO4a --HG-- extra : rebase_source : 014c0b04d8538dc5f15bc6dd4ed6bd220c55c5d4
11 lines
461 B
JavaScript
11 lines
461 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
Cu.import("resource://gre/modules/NetUtil.jsm");
|
|
|
|
function test() {
|
|
var file = new File([new Blob(["test"], {type: "text/plain"})], "test-name");
|
|
var url = URL.createObjectURL(file);
|
|
var channel = NetUtil.newChannel({uri: url, loadUsingSystemPrincipal: true});
|
|
|
|
is(channel.contentDispositionFilename, "test-name", "filename matches");
|
|
}
|