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

12 lines
356 B
HTML

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