gecko-dev/layout/base/tests/bug1634743-1.html
Emilio Cobos Álvarez 95e878963c Bug 1634743 - Fix caret baseline on a line with only inlines to account for line-height properly. r=jfkthame
While I'm looking at this code... This fixes the case described in
comment 46.

Differential Revision: https://phabricator.services.mozilla.com/D73465
2020-05-02 19:18:27 +00:00

30 lines
722 B
HTML

<!doctype html>
<html class="reftest-wait">
<title>Caret is correctly position for block whose only child is a non-empty pseudo, if line-height is used</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<style>
div:focus {
outline: 2px solid blue;
}
div {
line-height: 5;
border: 1px solid gray;
padding: 8px;
}
div::before {
content: "abc";
}
</style>
<div contenteditable="true" spellcheck="false"></div>
<script>
SimpleTest.waitForFocus(function() {
document.querySelector('[contenteditable="true"]').focus();
requestAnimationFrame(function() {
requestAnimationFrame(function() {
document.documentElement.removeAttribute("class");
});
});
});
</script>