[Bug 16557] Figure out bytes to code point mapping for statusText

https://www.w3.org/Bugs/Public/show_bug.cgi?id=16557

--- Comment #1 from Anne <annevk@annevk.nl> 2012-06-07 15:27:37 UTC ---
Test: http://dump.testsuite.org/xhr/statustext-decoding.php
Source: 

<?php
  header("HTTP/1.1 250 \xE2\x82\xAC");
?>
<script>
 x = new XMLHttpRequest()
 x.open("GET", "?trala", false)
 x.send("")
 alert(x.statusText) 
</script>

Results: Opera and Internet Explorer conform to the specification;
Firefox/Chrome/Safari do not. (Safari alerts "OK" rather than "€" by the way.)

-- 
Configure bugmail: https://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Thursday, 7 June 2012 15:27:45 UTC