mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-02 22:08:40 +09:00
25 lines
843 B
HTML
25 lines
843 B
HTML
|
|
<!DOCTYPE HTML>
|
||
|
|
<html>
|
||
|
|
<!-- Test: textarea with maxlength is invalid if the user edits and it's too long -->
|
||
|
|
<head>
|
||
|
|
<style>
|
||
|
|
:valid { background-color:green; }
|
||
|
|
:invalid { background-color:red; }
|
||
|
|
* { box-shadow:none; background-color:white; }
|
||
|
|
</style>
|
||
|
|
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
||
|
|
<script>
|
||
|
|
function runTest() {
|
||
|
|
var textarea = document.getElementById('textarea');
|
||
|
|
textarea.setSelectionRange(textarea.value.length, textarea.value.length)
|
||
|
|
textarea.focus();
|
||
|
|
synthesizeKey('VK_BACK_SPACE', {});
|
||
|
|
textarea.blur(); // to hide the caret
|
||
|
|
document.documentElement.className='';
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
<body onload="runTest()">
|
||
|
|
<textarea id="textarea" maxlength="2">fooo</textarea>
|
||
|
|
</body>
|
||
|
|
</html>
|