summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/xhr/overridemimetype-invalid-mime-type.htm
blob: 506aff841942c8a6bd0893cc276b5bacb00458b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!doctype html>
<title>XMLHttpRequest: overrideMimeType() and invalid MIME types</title>
<meta charset="utf-8">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<link rel="help" href="https://xhr.spec.whatwg.org/#the-overridemimetype()-method">
<div id="log"></div>
<script>
async_test(t => {
  const client = new XMLHttpRequest()
  client.onload = t.step_func_done(() => {
    assert_equals(client.responseText, "ÿ")
    assert_equals(client.getResponseHeader("Content-Type"), "text/html;charset=windows-1252")
  })
  client.open("GET", "resources/status.py?type=" + encodeURIComponent("text/html;charset=windows-1252") + "&content=%FF")
  client.overrideMimeType("bogus")
  client.send()
}, "Bogus MIME type does not override encoding")

async_test(t => {
  const client = new XMLHttpRequest()
  client.onload = t.step_func_done(() => {
    assert_equals(client.responseText, "ÿ")
    assert_equals(client.getResponseHeader("Content-Type"), "text/html;charset=windows-1252")
  })
  client.open("GET", "resources/status.py?type=" + encodeURIComponent("text/html;charset=windows-1252") + "&content=%FF")
  client.overrideMimeType("bogus;charset=Shift_JIS")
  client.send()
}, "Bogus MIME type does not override encoding, 2")

async_test(t => {
  const client = new XMLHttpRequest()
  client.onload = t.step_func_done(() => {
    assert_equals(client.responseXML, null)
    assert_equals(client.getResponseHeader("Content-Type"), "text/xml")
  })
  client.open("GET", "resources/status.py?type=" + encodeURIComponent("text/xml") + "&content=" + encodeURIComponent("<x/>"))
  client.overrideMimeType("bogus")
  client.send()
}, "Bogus MIME type does override MIME type")
</script>