blob: 63b0ecec6de6c9306841d153438f21f7e3560ec8 [file] [log] [blame]
// Cobalt: document.write() not supported.
if (document.write) {
document.write("<script>test(function () { assert_unreached('FAIL inline script from document.write ran') });</script>");
} else {
var s = document.createElement('script');
s.textContent = "test(function () { assert_unreached('FAIL inline script from document.write ran') });";
document.body.appendChild(s);
}