blob: 53e5afe0f642e1e592ad62804e64a3ad11ed5d85 [file] [log] [blame]
<html>
<head>
<script>
var doMutation = function() {
var region = document.getElementById("to_mutate");
region.firstChild.textContent = "New text contents";
window.setTimeout(function() { window.close(); } );
}
window.addEventListener("load", doMutation);
</script>
</head>
<body>
<div id="to_mutate" aria-live="polite" aria-relevant="text" aria-atomic="false">
Original contents.
</div>
</body>
</html>