gecko-dev/editor/reftests/caret_on_presshell_reinit-2.html
Emilio Cobos Álvarez 11a8108d96 Bug 1759602 - Make outline-style: auto the default focus outline. r=mstange
As per spec: https://html.spec.whatwg.org/#phrasing-content-3

This should generally be better as it is a better outline to begin with,
and allows us to customize it a bit in the future.

Differential Revision: https://phabricator.services.mozilla.com/D141051
2022-03-16 23:27:19 +00:00

28 lines
884 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<body>
<iframe srcdoc="<body><div></div></body>"></iframe>
<script type="text/javascript">
onload = function() {
var i = document.querySelector("iframe");
var win = i.contentWindow;
var doc = win.document;
var div = doc.querySelector("div");
win.getSelection().collapse(div, 0);
i.focus();
div.contentEditable = true;
div.focus();
setTimeout(function() {
var span = doc.createElement("span");
span.appendChild(doc.createTextNode("foo"));
div.appendChild(span);
div.style.outline = "none"; // remove the focus outline
i.style.position = "absolute";
document.body.clientWidth;
document.documentElement.removeAttribute("class");
}, 0);
};
</script>
</body>
</html>