Re: [XMLHttpRequest-tests] XMLHttpRequest/data-uri-basic.htm is incorrect (#964)

data-uri.htm (the -basic file is now dropped, tests merged into data-uri.htm) now contains:

        // Note: fetching a data URL with a non-GET method returns a network
        // error per <http://fetch.spec.whatwg.org/#basic-fetch>.
        if (method.toUpperCase() !== 'GET') {
          assert_equals(client.status, 0);
          assert_equals(client.responseText, '');
          assert_equals(client.statusText, 'OK');
          test.done();
          return;
        }

so I think this is fixed. @caitp could you review this file and tell me if you agree? :)

View on GitHub: https://github.com/w3c/web-platform-tests/issues/964#issuecomment-61545573

Received on Monday, 3 November 2014 20:46:53 UTC