mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 09:14:58 +00:00
39 lines
1.2 KiB
HTML
39 lines
1.2 KiB
HTML
<script src="include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
let testCounter = 1;
|
|
function testPart(part) {
|
|
println(`${testCounter++}. ${JSON.stringify(part())}`);
|
|
}
|
|
|
|
// 1. Textarea get value
|
|
testPart(() => {
|
|
const textarea = document.createElement('textarea');
|
|
textarea.textContent = 'PASS';
|
|
return textarea.value;
|
|
});
|
|
|
|
// 2. Textarea set value
|
|
testPart(() => {
|
|
const textarea = document.createElement('textarea');
|
|
textarea.textContent = 'PASS';
|
|
textarea.value = 'FAIL';
|
|
return textarea.textContent;
|
|
});
|
|
|
|
// 3. Textarea set default value
|
|
testPart(() => {
|
|
const textarea = document.createElement('textarea');
|
|
textarea.textContent = 'FAIL';
|
|
textarea.defaultValue = 'PASS';
|
|
return textarea.textContent;
|
|
});
|
|
|
|
// 4. Textarea text length
|
|
testPart(() => {
|
|
const textarea = document.createElement('textarea');
|
|
textarea.innerHTML = 'PASS';
|
|
return textarea.textLength;
|
|
});
|
|
});
|
|
</script>
|