blob: 1c41b2a012ab22b81cb52605a21fa52f49edbb1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!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>
|