On this page http://blog.zacharyvoase.com/2010/11/11/sockets-and-nodes-i/, running the following code in javascript console will throw an Exception.
var div = document.createElement('div'); div.innerHTML = "»";
Chrome 8.0.552.28 Mac: Error: INVALID_STATE_ERR: DOM Exception 11
Firebug in Firefox 3.6.12 Mac: NS_ERROR_DOM_SYNTAX_ERR An invalid or illegal string was specified
Safari 5.0.2 Mac: Error: NO_MODIFICATION_ALLOWED_ERR: DOM Exception 7
Opera: works fine
But it works fine in all other pages I tried. My questions are what's special about the page and why does chrome and firefox throw an exception?
Writing the character directly without using entity works fine.
var div = document.createElement('div'); div.innerHTML = "»";
Using other entities also works, e.g.
var div = document.createElement('div'); div.innerHTML = "<";