blob: e9323ba99af7d88474a5bb77e1c2f683c1dc4cb7 [file] [log] [blame]
/*
* Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion
* @description This tests that the HttpRequest responseType attribute
* is not modifiable for synchronous HTTP(S) requests.
*/
import "dart:html";
import "../../../Utils/expect.dart";
void main() {
HttpRequest xhr;
// HTTP
xhr = new HttpRequest();
xhr.open('GET', 'http://mydomain/', async:false);
Expect.throws(() {
xhr.responseType = 'document';
});
// HTTPS
xhr = new HttpRequest();
xhr.open('GET', 'https://mysecuredomain/', async:false);
Expect.throws(() {
xhr.responseType = 'document';
});
// FILE
// Expect.equals('file:', window.location.protocol); -- wrong
xhr = new HttpRequest();
xhr.open('GET', window.location.href, async:false);
Expect.throws(() {
xhr.responseType = 'document';
});
// DATA
var dataUrl = 'data:text/html;charset=utf-8,%3C%21DOCTYPE%20' +
'html%3E%0D%0A%3Chtml%20lang%3D%22en%22%3E%0D%0A%3Chead%' +
'3E%3Ctitle%3EEmbedded%20Window%3C%2Ftitle%3E%3C%2Fhead%' +
'3E%0D%0A%3Cbody%3E%3Ch1%3E42%3C%2Fh1%3E%3C%2Fbody%3E%0A' +
'%3C%2Fhtml%3E%0A%0D%0A';
xhr = new HttpRequest();
xhr.open('GET', dataUrl, async:false);
Expect.throws(() {
xhr.responseType = 'document';
});
}