/* Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ */ "use strict"; // Test that we do get the appropriate stylesheet content when the stylesheet is only // served based on the Accept: text/css header add_task(async function () { const httpServer = createTestHTTPServer(); httpServer.registerContentType("html", "text/html"); httpServer.registerPathHandler("/index.html", function (request, response) { response.setStatusLine(request.httpVersion, 200, "OK"); response.write(` Test stylesheet

Hello

`); }); let resourceUrlCalls = 0; // The /test/ URL should be called: // - once by the content page to load the // - once by the content page to load the