mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
23 lines
539 B
HTML
23 lines
539 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<!-- Test: the output element should show its value -->
|
||
|
<script type="text/javascript">
|
||
|
function setDefaultValue()
|
||
|
{
|
||
|
document.getElementById('o').value = "bar";
|
||
|
}
|
||
|
function setValue()
|
||
|
{
|
||
|
document.getElementById('o').value = "foo";
|
||
|
}
|
||
|
function disableReftestWait()
|
||
|
{
|
||
|
document.documentElement.className = '';
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<body onload="setDefaultValue(); setValue(); disableReftestWait();">
|
||
|
<output id="o"></output>
|
||
|
</body>
|
||
|
</html>
|