Revision 43e0c78669a53ba192bca32b3492ee81fc223311 authored by Chris Nardi on 13 March 2018, 18:32:41 UTC, committed by Chris Nardi on 13 March 2018, 18:32:41 UTC
getBoundingClientRec is defined in CSSOM View, not CSSOM.
1 parent f9579d6
Raw File
no-utf16-json.htm
<!doctype html>
<meta charset=utf-8>
<title>XMLHttpRequest: responseType "json" should be decoded as UTF-8 even when there's a UTF-16 BOM</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
    <link rel="help" href="https://infra.spec.whatwg.org/#parse-json-from-bytes" data-tested-assertations="following::ol/li[1]" />
<div id="log"></div>

<script>
  async_test(function() {
    var client = new XMLHttpRequest();
    client.responseType = 'json';
    client.onload = this.step_func_done(function(e) {
      assert_equals(client.response, null);
    });
    client.open("GET", "resources/utf16-bom.json");
    client.send(null);
  }, 'JSON asa UTF-16 with BOM should decode as UTF-8 (and, therefore, fail)');
</script>
back to top