Description
The javascript that the <s:validatorScript> component generates does not validate against XHTML 1.0 Transitional using the validator on http://validator.w3.org/.
The validation error happens because the component creates an extraneous html comment start/stop before and after the javascript it generates.
Output:
<script type="text/javascript" language="Javascript1.1">
<!--
<!--
var bCancel = false;
...
-->
//-->
Fix:
<script type="text/javascript" language="Javascript1.1"><!--
var bCancel = false;
...
...
//-->