[go: nahoru, domu]

blob: af1eb5877964da5081bdbf9cb3963f35d93a4a61 [file] [log] [blame]
<!DOCTYPE HTML>
<html>
<head>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script type="text/javascript" src="../resources/js-test.js"></script>
</head>
<body>
<div id="atomic"></div>
<script>
test(function() {
document.ariaNotify('hello');
document.ariaNotify('hello', { 'insertion_mode': 'queue', 'label': 'doc' });
assert_throws_js(TypeError, () => document.ariaNotify());
document.getElementById('atomic').ariaNotify('hello');
document.getElementById('atomic').ariaNotify('hello', { 'insertion_mode': 'queue', 'label': 'doc' });
assert_throws_js(TypeError, () => document.getElementById('atomic').ariaNotify());
});
</script>
</body>
</html>