From 2c8f67882acd2e48ea149c0b4347b69deec43528 Mon Sep 17 00:00:00 2001 From: Andrew McCreight Date: Fri, 30 Jan 2015 10:59:02 -0800 Subject: [PATCH] Bug 1127013 - Use unix file endings in mochitest-e10s-utils. r=jmaher --- testing/mochitest/mochitest-e10s-utils.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/testing/mochitest/mochitest-e10s-utils.js b/testing/mochitest/mochitest-e10s-utils.js index 55fe1e2453c..5897c65426a 100644 --- a/testing/mochitest/mochitest-e10s-utils.js +++ b/testing/mochitest/mochitest-e10s-utils.js @@ -1,11 +1,11 @@ -// Utilities for running tests in an e10s environment. - -function e10s_init() { - // Listen for an 'oop-browser-crashed' event and log it so people analysing - // test logs have a clue about what is going on. - window.addEventListener("oop-browser-crashed", (event) => { - let uri = event.target.currentURI; - Cu.reportError("remote browser crashed while on " + - (uri ? uri.spec : "") + "\n"); - }, true); -} +// Utilities for running tests in an e10s environment. + +function e10s_init() { + // Listen for an 'oop-browser-crashed' event and log it so people analysing + // test logs have a clue about what is going on. + window.addEventListener("oop-browser-crashed", (event) => { + let uri = event.target.currentURI; + Cu.reportError("remote browser crashed while on " + + (uri ? uri.spec : "") + "\n"); + }, true); +}