Bug 1345600 - Remove the empty script element workaround in jstests' browser.js. r=sfink

--HG--
extra : rebase_source : 3b8e7a233e8df7e5055e65f1a09774a46a05599c
extra : histedit_source : 94c8e1aceab45ac9b04141050f953cc19b6448a4
This commit is contained in:
André Bargull 2017-11-11 04:55:45 -08:00
Родитель 49c97adb4e
Коммит 230aa7d0ef
1 изменённых файлов: 2 добавлений и 5 удалений

Просмотреть файл

@ -516,7 +516,8 @@
gczeal(Number(properties.gczeal));
}
document.write(`<title>${ properties.test }<\/title>`);
// Display the test path in the title.
document.title = properties.test;
// Output script tags for shell.js, then browser.js, at each level of the
// test path hierarchy.
@ -537,10 +538,6 @@
scripts.push({src: "js-test-driver-end.js", module: false});
if (!moduleTest) {
// XXX bc - the first document.written script is ignored if the protocol
// is file:. insert an empty script tag, to work around it.
document.write("<script></script>");
var key, value;
if (properties.language !== "type") {
key = "language";