Questo è il mio file di codice sorgente in Eclipse:Come utilizzare i commenti condizionali di Internet Explorer in JSF?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
</body>
</html>
Quando osservo questo IE9 rende il testo:
<!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]-->
Se ho vista origine che dice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
</body>
</html>
Qualche motivo per cui la fonte è cambiata una volta servita dal Faces Servlet?
Brutto, come l'inferno, ma funziona, come un fascino. Grazie! –
Non è necessario inserire la parte di script qui. Puoi anche dividerlo e mantenere il tag di script fuori da outputText. –