1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13

content / test / data / accessibility / html / disabled-with-subtree.html [blame]

<!--
@WAIT-FOR:done
-->
<button id="button1" disabled>old<div></div></button>
<script>
function update() {
  document.getElementById("button1").childNodes[0].textContent = "new";
  document.title="done";
}
document.addEventListener('DOMContentLoaded', () => {
  setTimeout(update, 0);
});
</script>