forked from mirrors/gecko-dev
This change will avoid unecessary IPDL messages and potentially, content processes crashes. MozReview-Commit-ID: HHUEXz7ePEQ --HG-- rename : dom/tests/browser/browser_test_performance_metrics.js => dom/tests/browser/perfmetrics/browser_test_performance_metrics.js rename : dom/tests/browser/ping_worker.html => dom/tests/browser/perfmetrics/ping_worker.html rename : dom/tests/browser/ping_worker.js => dom/tests/browser/perfmetrics/ping_worker.js rename : dom/tests/browser/ping_worker2.html => dom/tests/browser/perfmetrics/ping_worker2.html extra : rebase_source : b3d90cd22ed68fe7e09f44fe4145b9cde0dfafa1
19 lines
757 B
JavaScript
19 lines
757 B
JavaScript
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
add_task(async function testNotActivated() {
|
|
// dom.performance.enable_scheduler_timing is set to false in browser.ini
|
|
waitForExplicitFinish();
|
|
// make sure we throw a JS exception in case the pref is off and
|
|
// we call requestPerformanceMetrics()
|
|
let failed = false;
|
|
try {
|
|
let promise = await ChromeUtils.requestPerformanceMetrics();
|
|
} catch (e) {
|
|
failed = true;
|
|
}
|
|
Assert.ok(failed, "We should get an exception if preffed off");
|
|
});
|