Commit ab2a664e authored by criss's avatar criss
Browse files

Backed out changeset 628cfa8f2c07 (bug 1732079) for causing failures on...

Backed out changeset 628cfa8f2c07 (bug 1732079) for causing failures on dbg-event-breakpoints-fission.js. CLOSED TREE
parent 37ce3986
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@ add_task(async function() {
  if (Services.appinfo.sessionHistoryInParent) {
    info("Run test with bfcacheInParent ENABLED");
    await pushPref("fission.bfcacheInParent", true);
    await pushPref("dom.security.https_first", false);
    await testSourcesOnNavigation();
    await testDebuggerPauseStateOnNavigation();
  }
+1 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@
 */

add_task(async function() {
  await pushPref("dom.security.https_first", false);
  const toolbox = await initPane("doc-scripts.html", "webconsole", [
    ["devtools.debugger.skip-pausing", true]
  ]);
+2 −1
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@
// Tests that the content scripts are listed in the source tree.

add_task(async function() {
  await pushPref("dom.security.https_first", false);
  await pushPref("devtools.chrome.enabled", true);
  const extension = await installAndStartExtension();

@@ -76,7 +77,7 @@ async function installAndStartExtension() {
      content_scripts: [
        {
          js: ["content_script.js"],
          matches: ["https://example.com/*"],
          matches: ["http://example.com/*"],
          run_at: "document_start"
        }
      ]
+2 −2
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ Services.scriptloader.loadSubScript(
 * the attribute.
 */
const TEST_COM_URI =
  `https://example.com/document-builder.sjs?html=` +
  `http://example.com/document-builder.sjs?html=` +
  encodeURI(
    `<input disabled=""/>
     <button onclick="document.querySelector('input').toggleAttribute('disabled')">
@@ -30,7 +30,7 @@ const TEST_COM_URI =
  );

// Embed the example.com test page in an example.org iframe.
const TEST_URI = `https://example.org/document-builder.sjs?html=
const TEST_URI = `http://example.org/document-builder.sjs?html=
<iframe src="${encodeURI(TEST_COM_URI)}"></iframe><body>`;

add_task(async function() {
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ Services.scriptloader.loadSubScript(
);

const DMB_TEST_URL =
  "https://example.com/browser/devtools/client/debugger/test/mochitest/examples/doc-dom-mutation.html";
  "http://example.com/browser/devtools/client/debugger/test/mochitest/examples/doc-dom-mutation.html";

async function enableMutationBreakpoints() {
  await pushPref("devtools.debugger.features.dom-mutation-breakpoints", true);
Loading