var c= {"Content":"</SCRIPT>"}
Gives parser error in Chrome. Escaping works ... </SCRIPT>
https://jsfiddle.net/OndrejSpilka327/banr9836/
Is it really chrome bug?
EDIT I don't think the argumentation is correct. HTML parser should have nothing to do with JavaScript parser. First of all, whatever is enclosed in should be parsed as JavaScript, not HTML. This is definitely wrong implementation of HTML parser.
For your curiosity:
var c= {"Content":"<SCRIPT></SCRIPT>"}
console.log(c.Content);
Produces the sam error in JSFiddle...and this is definitely well formed.
Again one can argue that SCRIPT tag can't occur inside outer SCRIPT tag, however whatever is enclosed in SCRIPT tags should be parsed as script not as HTML and especially if escaped in a regular string literal.
Such an argumentation only advocates bad implementation.
Obviously the behaviour produces errors when working with custom content serialized to json and persisted in SCRIPT tag.
Just curious what tags you removed Felix and why?