summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fetch/api/basic/request-headers-case.any.js
blob: 4c10e717f8c2e594d0e1f612ce0a19191ac5fc85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// META: global=window,worker

promise_test(() => {
  return fetch("/xhr/resources/echo-headers.py", {headers: [["THIS-is-A-test", 1], ["THIS-IS-A-TEST", 2]] }).then(res => res.text()).then(body => {
    assert_regexp_match(body, /THIS-is-A-test: 1, 2/)
  })
}, "Multiple headers with the same name, different case (THIS-is-A-test first)")

promise_test(() => {
  return fetch("/xhr/resources/echo-headers.py", {headers: [["THIS-IS-A-TEST", 1], ["THIS-is-A-test", 2]] }).then(res => res.text()).then(body => {
    assert_regexp_match(body, /THIS-IS-A-TEST: 1, 2/)
  })
}, "Multiple headers with the same name, different case (THIS-IS-A-TEST first)")