Commit a48193a5 authored by Mike Conley's avatar Mike Conley
Browse files

Bug 1385453 - Disable tab warming in browser_bug343515.js test. r=billm

MozReview-Commit-ID: 9DOv9drNi9n

--HG--
extra : rebase_source : f7927107e5374404f2043550e0cd1c9ee46f5991
parent abb784e8
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -38,8 +38,13 @@ function test() {
  // Lots of callbacks going on here
  waitForExplicitFinish();

  // Begin the test
  step1();
  // Begin the test. First, we disable tab warming because it's
  // possible for the mouse to be over one of the tabs during
  // this test, warm it up, and cause this test to fail intermittently
  // in automation.
  SpecialPowers.pushPrefEnv({
    set: [["browser.tabs.remote.warmup.enabled", false]],
  }).then(step1);
}

function step1() {