4 <script src=/resources/testharness.js
></script>
5 <script src=/resources/testharnessreport.js
></script>
8 /* global test, assert_equals */
10 var xhr
= new XMLHttpRequest();
11 xhr
.open("get", "foo");
12 assert_equals(xhr
.responseType
, "");
13 xhr
.responseType
= "foo";
14 assert_equals(xhr
.responseType
, "");
15 }, "Assigning an invalid value to an enum attribute should not throw.");