https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 0ebbaaad184b1f9d2d27e91c5c623cce85149a82 authored by bylee on 12 April 2014, 04:46:17 UTC
Add test-case that if both types of custom element types are provided at the time of element's instantiation, the custom tag must win over the type extension.
Tip revision: 0ebbaaa
open-url-bogus.htm
<!DOCTYPE html>
<html>
  <head>
    <title>XMLHttpRequest: open() - bogus URLs</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <link rel="help" href="https://xhr.spec.whatwg.org/#the-open()-method" data-tested-assertations="following::ol/li[7] following::ol/li[8]" />
  </head>
  <body>
    <div id="log"></div>
    <script>
      function url(url) {
        test(function() {
          var client = new XMLHttpRequest()
          assert_throws("SyntaxError", function() { client.open("GET", url) })
        }, document.title + " (" + url + ")")
      }
      url("http:")
      url("http://a a/")
    </script>
  </body>
</html>
back to top