blob: 0a5eb7718a9d0b045d3dbfd4ea9285467cf7ff03 [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 XMLHttpRequest withCredentials attribute
* is modifiable prior to being in the OPENED state.
*/
import "dart:html";
import "../../../Utils/expect.dart";
import "../../testcommon.dart";
void main() {
var xhr = new HttpRequest();
xhr.withCredentials = true;
xhr.open('GET', 'http://mydomain');
Expect.isTrue(xhr.withCredentials);
}