Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /xhr/send-accept-language.htm - WPT Dashboard Interop Dashboard
 
 
<!doctype html>
<html>
  <head>
    <title>XMLHttpRequest: send() - Accept-Language</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
  </head>
  <body>
    <div id="log"></div>
    <script>
      test(function() {
        var client = new XMLHttpRequest()
        client.open('GET', 'resources/inspect-headers.py?filter_name=accept-language', false)
        client.send(null)
        assert_regexp_match(client.responseText, /Accept-Language:\s.+/)
      }, 'Send "sensible" default value, whatever that means')
      test(function() {
        var client = new XMLHttpRequest()
        client.open("GET", "resources/inspect-headers.py?filter_name=accept-language", false)
        client.setRequestHeader("Accept-Language", "x-GameSpeak")
        client.send(null)
        assert_equals(client.responseText, "Accept-Language: x-GameSpeak\n")
      })
    </script>
  </body>
</html>