зеркало из https://github.com/mozilla/gecko-dev.git
21 строка
587 B
HTML
21 строка
587 B
HTML
<!doctype html>
|
|
<html class="reftest-wait">
|
|
<title>Caret is correctly position for block whose only child is an empty span</title>
|
|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<style>
|
|
div:focus {
|
|
outline: 3px solid blue;
|
|
}
|
|
</style>
|
|
<div contenteditable="true" spellcheck="false"><span></span></div>
|
|
<script>
|
|
SimpleTest.waitForFocus(function() {
|
|
document.querySelector('[contenteditable="true"]').focus();
|
|
requestAnimationFrame(function() {
|
|
requestAnimationFrame(function() {
|
|
document.documentElement.removeAttribute("class");
|
|
});
|
|
});
|
|
});
|
|
</script>
|