mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 16:28:38 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
|
|
@ -0,0 +1,87 @@
|
|||
/* vim: set ts=2 et sw=2 tw=80: */
|
||||
/* Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/ */
|
||||
/* Bug 644413 */
|
||||
|
||||
var gScratchpad; // Reference to the Scratchpad object.
|
||||
var gFile; // Reference to the temporary nsIFile we will work with.
|
||||
var DEVTOOLS_CHROME_ENABLED = "devtools.chrome.enabled";
|
||||
|
||||
// The temporary file content.
|
||||
var gFileContent = "function main() { return 0; }";
|
||||
|
||||
function test() {
|
||||
waitForExplicitFinish();
|
||||
|
||||
Services.prefs.setBoolPref(DEVTOOLS_CHROME_ENABLED, false);
|
||||
gBrowser.selectedTab = gBrowser.addTab();
|
||||
gBrowser.selectedBrowser.addEventListener("load", function onLoad() {
|
||||
gBrowser.selectedBrowser.removeEventListener("load", onLoad, true);
|
||||
openScratchpad(runTests);
|
||||
}, true);
|
||||
|
||||
content.location = "data:text/html,<p>test file open and save in Scratchpad";
|
||||
}
|
||||
|
||||
function runTests() {
|
||||
gScratchpad = gScratchpadWindow.Scratchpad;
|
||||
function size(obj) { return Object.keys(obj).length; }
|
||||
|
||||
// Test Scratchpad._scanModeLine method.
|
||||
let obj = gScratchpad._scanModeLine();
|
||||
is(size(obj), 0, "Mode-line object has no properties");
|
||||
|
||||
obj = gScratchpad._scanModeLine("/* This is not a mode-line comment */");
|
||||
is(size(obj), 0, "Mode-line object has no properties");
|
||||
|
||||
obj = gScratchpad._scanModeLine("/* -sp-context:browser */");
|
||||
is(size(obj), 1, "Mode-line object has one property");
|
||||
is(obj["-sp-context"], "browser");
|
||||
|
||||
obj = gScratchpad._scanModeLine("/* -sp-context: browser */");
|
||||
is(size(obj), 1, "Mode-line object has one property");
|
||||
is(obj["-sp-context"], "browser");
|
||||
|
||||
obj = gScratchpad._scanModeLine("// -sp-context: browser");
|
||||
is(size(obj), 1, "Mode-line object has one property");
|
||||
is(obj["-sp-context"], "browser");
|
||||
|
||||
obj = gScratchpad._scanModeLine("/* -sp-context:browser, other:true */");
|
||||
is(size(obj), 2, "Mode-line object has two properties");
|
||||
is(obj["-sp-context"], "browser");
|
||||
is(obj["other"], "true");
|
||||
|
||||
// Test importing files with a mode-line in them.
|
||||
let content = "/* -sp-context:browser */\n" + gFileContent;
|
||||
createTempFile("fileForBug644413.tmp", content, function (aStatus, aFile) {
|
||||
ok(Components.isSuccessCode(aStatus), "File was saved successfully");
|
||||
|
||||
gFile = aFile;
|
||||
gScratchpad.importFromFile(gFile.QueryInterface(Ci.nsILocalFile), true, fileImported);
|
||||
});
|
||||
}
|
||||
|
||||
function fileImported(status, content) {
|
||||
ok(Components.isSuccessCode(status), "File was imported successfully");
|
||||
|
||||
// Since devtools.chrome.enabled is off, Scratchpad should still be in
|
||||
// the content context.
|
||||
is(gScratchpad.executionContext, gScratchpadWindow.SCRATCHPAD_CONTEXT_CONTENT);
|
||||
|
||||
// Set the pref and try again.
|
||||
Services.prefs.setBoolPref(DEVTOOLS_CHROME_ENABLED, true);
|
||||
|
||||
gScratchpad.importFromFile(gFile.QueryInterface(Ci.nsILocalFile), true, function (status, content) {
|
||||
ok(Components.isSuccessCode(status), "File was imported successfully");
|
||||
is(gScratchpad.executionContext, gScratchpadWindow.SCRATCHPAD_CONTEXT_BROWSER);
|
||||
|
||||
gFile.remove(false);
|
||||
gFile = null;
|
||||
gScratchpad = null;
|
||||
finish();
|
||||
});
|
||||
}
|
||||
|
||||
registerCleanupFunction(function () {
|
||||
Services.prefs.clearUserPref(DEVTOOLS_CHROME_ENABLED);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue