mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
54f1561afc
--HG-- extra : rebase_source : 2e2f3a73553d720b32812603b0ce96c89b9a6261
19 lines
477 B
HTML
19 lines
477 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<!-- Test: value has to be shown if set via javascript -->
|
|
<script type="text/javascript">
|
|
function setValue()
|
|
{
|
|
document.getElementById('p1').value = "my value";
|
|
}
|
|
function disableReftestWait()
|
|
{
|
|
document.documentElement.className = '';
|
|
}
|
|
</script>
|
|
|
|
<body onload="setValue(); disableReftestWait();">
|
|
<input type="text" id="p1" value="" placeholder="my placeholder">
|
|
</body>
|
|
</html>
|