/* 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 . */ // Tests pretty-printing of HTML file with windows line-breaks (\r\n). "use strict"; requestLongerTimeout(2); const httpServer = createTestHTTPServer(); httpServer.registerPathHandler("/doc_line_breaks.html", (request, response) => { response.setStatusLine(request.httpVersion, 200, "OK"); response.setHeader("Content-Type", "text/html"); response.write( `TEST with line breaks\r\n` ); }); const TEST_URL = `http://localhost:${httpServer.identity.primaryPort}/doc_line_breaks.html`; add_task(async function () { const dbg = await initDebuggerWithAbsoluteURL(TEST_URL); await selectSource(dbg, "doc_line_breaks.html"); clickElement(dbg, "prettyPrintButton"); await waitForSelectedSource(dbg, "doc_line_breaks.html:formatted"); const prettyPrintedSource = findSourceContent( dbg, "doc_line_breaks.html:formatted" ); ok(prettyPrintedSource, "Pretty-printed source exists"); info("Check that the HTML file was pretty-printed as expected"); is( prettyPrintedSource.value, "TEST with line breaks\n", "HTML file is pretty printed as expected" ); });