mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
7615233029
The content inside an editable region is either editable itself, or is inside a contenteditable="false" subtree. In the first case, it should not be focusable since it is editable. In the second case, it should not be focusable since the entire non-editable region is treated as a special single entity for the purposes of selection and caret movement, and having something focusable in the middle of such a subtree breaks that model.
24 lines
725 B
HTML
24 lines
725 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
|
</head>
|
|
<body onload="start()">
|
|
<div onfocus="done()" contenteditable>foo<div contenteditable="false"><a href="#">bar</a></div>baz</div>
|
|
<script>
|
|
var div = document.querySelector("div");
|
|
function start() {
|
|
div.focus();
|
|
}
|
|
function done() {
|
|
var sel = getSelection();
|
|
sel.collapse(div, 0);
|
|
// Press Right four times to set the caret right before "baz"
|
|
for (var i = 0; i < 5; ++i) {
|
|
synthesizeKey("VK_RIGHT", {});
|
|
}
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|