Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: !debug || !(os == 'linux')
- Manifest: dom/base/crashtests/crashtests.list
<html class="reftest-wait">
<head>
<style>
* {
user-select: none;
}
</style>
<script>
function start () {
document.execCommand('selectAll', false);
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="start()">
<div contentEditable="true"></div>
</body>
</html>