gecko-dev/dom/bindings/test/test_enums.html
Ruihui Yan 2dbc54f868 Bug 1508819 - Enable ESLint for dom/bindings (manual changes). r=nika
Depends on D13891

Differential Revision: https://phabricator.services.mozilla.com/D13892

--HG--
extra : moz-landing-system : lando
2019-03-29 16:47:06 +00:00

17 lines
488 B
HTML

<!doctype html>
<meta charset=utf-8>
<title>Enums</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<div id=log></div>
<script>
/* global test, assert_equals */
test(function() {
var xhr = new XMLHttpRequest();
xhr.open("get", "foo");
assert_equals(xhr.responseType, "");
xhr.responseType = "foo";
assert_equals(xhr.responseType, "");
}, "Assigning an invalid value to an enum attribute should not throw.");
</script>