blob: b11b42c49f8d8b1bf91375e5b004ee2f42e4a252 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../../resources/js-test-pre.js"></script>
</head>
<body>
<script>
description('A Test for sending a reset event to output elements.');
var form = document.createElement('form');
var output = document.createElement('output');
output.defaultValue = 'defaultValue';
form.appendChild(output);
debug('- Sets the value attribute of the output element.');
output.value = 'aValue';
shouldBeEqualToString('output.defaultValue', 'defaultValue');
shouldBeEqualToString('output.value', 'aValue');
shouldBeEqualToString('output.innerText', 'aValue');
shouldBeEqualToString('output.innerHTML', 'aValue');
debug('- Sends a reset event to reset the value to the default value.');
form.reset();
shouldBeEqualToString('output.defaultValue', 'defaultValue');
shouldBeEqualToString('output.value', 'defaultValue');
shouldBeEqualToString('output.innerText', 'defaultValue');
shouldBeEqualToString('output.innerHTML', 'defaultValue');
debug('- Ensures that the value mode flags is in mode "default".');
output.defaultValue = 'another defaultValue';
shouldBeEqualToString('output.defaultValue', 'another defaultValue');
shouldBeEqualToString('output.value', 'another defaultValue');
shouldBeEqualToString('output.innerText', 'another defaultValue');
shouldBeEqualToString('output.innerHTML', 'another defaultValue');
</script>
<script src="../../../resources/js-test-post.js"></script>
</body>
</html>