blob: 79a38b4bc6610511622511864b9ce422e8034098 [file] [log] [blame]
<script>
if (window.testRunner)
testRunner.dumpAsText();
document.addEventListener("DOMSubtreeModified", function() {
});
function selectstart() {
var oElement = event.srcElement;
oElement.insertAdjacentHTML('afterbegin', '<details></details>')
oElement.innerText = 'Test passes if it does not crash.';
}
document.addEventListener("selectstart", selectstart);
window.onload = function(){
document.execCommand("SelectAll")
};
</script>