Files
moli/moli-core/tests/fixtures/runtime/event_bubbles.html
2026-08-11 00:10:12 +08:00

18 lines
408 B
HTML

<!doctype html>
<html>
<body
data-dcl-bubbles=""
data-dcl-cancelable=""
data-dcl-type=""
>
<script>
const body = document.body;
document.addEventListener('DOMContentLoaded', function(e) {
body.setAttribute('data-dcl-bubbles', String(e.bubbles));
body.setAttribute('data-dcl-cancelable', String(e.cancelable));
body.setAttribute('data-dcl-type', e.type);
});
</script>
</body>
</html>