mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
422 B
HTML
18 lines
422 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class='reftest-wait'>
|
||
|
<link rel='stylesheet' type='text/css' href='style.css'>
|
||
|
<script>
|
||
|
function loadHandler()
|
||
|
{
|
||
|
document.getElementById('t').value = 'bar';
|
||
|
document.forms[0].reset();
|
||
|
document.documentElement.className = '';
|
||
|
}
|
||
|
</script>
|
||
|
<body onload='loadHandler();'>
|
||
|
<form>
|
||
|
<textarea id='t' placeholder='foo'></textarea>
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|