Revision 5d3d98450ed243074ead60b3dd06c94c8608bc77 authored by Chris Nardi on 08 April 2018, 02:03:44 UTC, committed by Chris Nardi on 08 April 2018, 02:03:44 UTC
Many tests in variable-presentation-attribute.html went against their relative specs. For most attributes, this change corrects their default values. This change also removes the default value test for font-family, since the default value is implementation-dependent.

This change also removes the tests for `glyph-orientation-horizontal`, `glyph-orientation-vertical`, and `kerning`, as these properties have been removed by Chrome and Firefox as they are obsolete.
1 parent d0d6224
Raw File
responsexml-media-type.htm
<!doctype html>
<html>
  <head>
    <title>XMLHttpRequest: responseXML MIME type tests</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <link rel="help" href="https://xhr.spec.whatwg.org/#the-responsexml-attribute" data-tested-assertations="following::ol[1]/li[4]" />
    <link rel="help" href="https://xhr.spec.whatwg.org/#document-response-entity-body" data-tested-assertations="following::ol[1]/li[3] following::ol[1]/li[4] following::ol[1]/li[6] following::ol[1]/li[10]" />
  </head>
  <body>
    <div id="log"></div>
    <script>
      function request(type, succeed) {
        test(function() {
          var client = new XMLHttpRequest()
          client.open("GET", "resources/status.py?content=<x><\/x>&type=" + encodeURIComponent(type), false)
          client.send(null)
          if(!succeed)
            assert_equals(client.responseXML, null)
          else
            assert_equals(client.responseXML.documentElement.localName, "x")
        }, document.title + " ('" + type + "', should "+(succeed?'':'not')+" parse)")
      }
      request("", true)
      request("text/html", false)
      request("bogus", true)
      request("bogus+xml", true)
      request("text/plain;+xml", false)
      request("text/plainxml", false)
      request("video/x-awesome+xml", true)
      request("video/x-awesome", false)
      request("text/xml", true)
      request("application", true)
      request("text/xsl", false)
      request("text/plain", false)
      request("application/rdf", false)
      request("application/xhtml+xml", true)
      request("image/svg+xml", true)
    </script>
  </body>
</html>
back to top