mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
618 B
HTML
29 lines
618 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<title>bug 536421</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<style>
|
|
input { border:1px solid blue; }
|
|
</style>
|
|
</head>
|
|
<body onload="doTest()">
|
|
<input value="test" id="textbox" onfocus="triggerBug();" type="text">
|
|
<script type="text/javascript">
|
|
function finishTest()
|
|
{
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
function triggerBug()
|
|
{
|
|
finishTest();
|
|
}
|
|
function doTest()
|
|
{
|
|
var t = document.getElementById("textbox");
|
|
t.focus();
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|