Hi,
We fiddled quite a bit with auto eval of embedded and external scripts,
because IE and Safari don't execute them when they come in with xhr.
Now, here's the same problem for styles. The following example with
display red text in FF+Safari, but black text in IE. Do you think, we
should add auto style eval for JSF 2.0 xhr requests?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<body>
<div id="test"></div>
<p>test text</p>
<script type="text/javascript">
document.getElementById('test').innerHTML = '<style
type="text/css">p {color:red}</style>';
</script>
</body>
</html>
Best regards,
Ganesh