mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
30 lines
865 B
HTML
30 lines
865 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Contenteditable Selection Test Case</title>
|
|
<script>
|
|
function runTests() {
|
|
var editable = document.getElementById("editable");
|
|
var text = document.getElementById("text");
|
|
|
|
editable.focus();
|
|
|
|
setTimeout(function () {
|
|
editable.setAttribute("contenteditable", "false");
|
|
text.focus();
|
|
setTimeout(function () {
|
|
document.body.offsetHeight;
|
|
document.documentElement.removeAttribute('class');
|
|
}, 0);
|
|
}, 0);
|
|
}
|
|
document.addEventListener('MozReftestInvalidate', runTests, false);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="editable" contenteditable="true" tabindex="0" spellcheck="false">This is a contenteditable.</div>
|
|
<div id="text" tabindex="0">This is focusable text</div>
|
|
</body>
|
|
</html>
|