tenfourfox/layout/reftests/bugs/613433-1-ref.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

22 lines
443 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style>
div {
min-height: 36px;
}
</style>
<script>
function test() {
document.querySelector("div").focus();
}
function focusTriggered() {
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="test()">
<div contenteditable onfocus="focusTriggered()"></div>
</body>
</html>