This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
Reported as specific to standalone="yes" in: http://lists.w3.org/Archives/Public/public-mobileok-checker/2008Oct/0007.html Actually, the error occurs whenever the "standalone" attribute is defined in the XML declaration, e.g.: <?xml version="1.0" encoding="utf-8" standalone="no"?>
Fixed the getXMLPrologEncoding method in HTTPTextResource.java. Regular expressions are greedy by default in Java. The extracted encoding string contained all characters up until the end of the value of the last attribute in the XML declaration. For instance, if the XML declaration was: <?xml version="1.0" encoding="utf-8" standalone="no"?> ... the extracted encoding was: utf-8" standalone="no