gecko-dev/layout/base/tests/bug1510942-2.html
Emilio Cobos Álvarez ddde052ada Bug 1510942 - Fix the position of the caret when the caret frame is a reference frame. r=mattwoodrow
This is consistent with what we do for non-stacking-contexts. The
GetCaretFrame() == child check may be able to go away, I'm not sure, so I've
left it for now.

Differential Revision: https://phabricator.services.mozilla.com/D13384

--HG--
extra : moz-landing-system : lando
2018-11-30 06:19:21 +00:00

22 lines
560 B
HTML

<!doctype html>
<html class="reftest-wait">
<meta charset="utf-8">
<title>Test for bug 1510942: Caret in a transformed empty block</title>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<style>
#editable {
height: 300px;
width: 100px;
outline: 1px solid black;
opacity: 0;
}
</style>
<div id="editable" contenteditable></div>
<script>
SimpleTest.waitForFocus(function() {
document.getElementById("editable").focus();
document.documentElement.className ="";
});
</script>