Possible Duplicate:
Why split the <script> tag when writing it with document.write()?
Browsing through some Chromium source (see line 45ff), I found:
in_script_tag: function(code) {
return "<script>" + code + "</scr" + "ipt>";
},
Does anyone know why the author chose "</scr" + "ipt>"
over "</script>"
?