From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- .../browser_dbg_sources-webext-contentscript.js | 63 ++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 devtools/client/debugger/test/mochitest/browser_dbg_sources-webext-contentscript.js (limited to 'devtools/client/debugger/test/mochitest/browser_dbg_sources-webext-contentscript.js') diff --git a/devtools/client/debugger/test/mochitest/browser_dbg_sources-webext-contentscript.js b/devtools/client/debugger/test/mochitest/browser_dbg_sources-webext-contentscript.js new file mode 100644 index 000000000..2fd8067f9 --- /dev/null +++ b/devtools/client/debugger/test/mochitest/browser_dbg_sources-webext-contentscript.js @@ -0,0 +1,63 @@ +/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ +/* vim: set ft=javascript ts=2 et sw=2 tw=80: */ +/* Any copyright is dedicated to the Public Domain. + * http://creativecommons.org/publicdomain/zero/1.0/ */ + +/** + * Make sure eval scripts appear in the source list + */ + +const ADDON_PATH = "addon-webext-contentscript.xpi"; +const TAB_URL = EXAMPLE_URL + "doc_script_webext_contentscript.html"; + +let {getExtensionUUID} = Cu.import("resource://gre/modules/Extension.jsm", {}); + +function test() { + let gPanel, gDebugger; + let gSources, gAddon; + + let cleanup = function* (e) { + if (gAddon) { + // Remove the addon, if any. + yield removeAddon(gAddon); + } + if (gPanel) { + // Close the debugger panel, if any. + yield closeDebuggerAndFinish(gPanel); + } else { + // If no debugger panel was opened, call finish directly. + finish(); + } + }; + + return Task.spawn(function* () { + gAddon = yield addTemporaryAddon(ADDON_PATH); + let uuid = getExtensionUUID(gAddon.id); + + let options = { + source: `moz-extension://${uuid}/webext-content-script.js`, + line: 1 + }; + [,, gPanel] = yield initDebugger(TAB_URL, options); + gDebugger = gPanel.panelWin; + gSources = gDebugger.DebuggerView.Sources; + + is(gSources.values.length, 2, "Should have 2 sources"); + + let item = gSources.getItemForAttachment(attachment => { + return attachment.source.url.includes("moz-extension"); + }); + + ok(item, "Got the expected WebExtensions ContentScript source"); + ok(item && item.attachment.source.url.includes(item.attachment.group), + "The source is in the expected source group"); + is(item && item.attachment.label, "webext-content-script.js", + "Got the expected filename in the label"); + + yield cleanup(); + }).catch((e) => { + ok(false, `Got an unexpected exception: ${e}`); + // Cleanup in case of failures in the above task. + return Task.spawn(cleanup); + }); +} -- cgit v1.2.3