gecko-dev/layout/base/tests/bug1359411.html
Mats Palmgren 7da60ffe84 Bug 1359411 - Reftest. (test only: DONTBUILD)
MozReview-Commit-ID: H1y2uTW89i8
2017-05-13 21:15:03 +02:00

13 lines
504 B
HTML

<!DOCTYPE html>
<html><head><script src="/tests/SimpleTest/EventUtils.js"></script><style>
i:before{content:"X"}
</style></head><body onload="runTest()"><div><button type="button"><i></i></button><p></p></div><editor contenteditable="true" onfocus="sendKey('UP')">focus me, then press the UP key</editor>
<script>var e = document.querySelector('editor'); e.focus()</script>
<script>
function runTest() {
document.body.offsetHeight;
var e = document.querySelector('editor');
e.focus()
}
</script>