gecko/layout/reftests/editor/caret_after_reframe.html
Ehsan Akhgari cc3a98796c Bug 602130 - Caret positioned incorrectly in input[type=text] when hidden and redisplayed; r=bzbarsky a=blocking-final+
--HG--
extra : rebase_source : 673601ada34f5d1eefc61303f7420dd74363e2b3
2010-10-14 15:36:35 -04:00

15 lines
348 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<body>
<input onfocus="focused()" autofocus>
<script>
function focused() {
var i = document.querySelector("input");
i.style.display = "block";
document.offsetWidth;
document.documentElement.removeAttribute("class");
}
</script>
</body>
</html>