summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/infrastructure/testdriver/click_child.html
blob: 5899841c4c1bcc9181f71b4b8699ded57cfe93fd (plain)
1
2
3
4
5
6
7
<!doctype html>
<button id="button">Button</button>
<div id="log">FAIL</div>
<script>
document.getElementById("button").addEventListener("click", () =>
    document.getElementById("log").textContent = "PASS");
</script>