summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/webappapis/scripting/events/event-handler-attributes-body-window.html
blob: e8055d99f357da2baf1f9034d121055338e238e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<title>HTMLBodyElement event handlers</title>

<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/WebIDLParser.js"></script>
<script src="resources/event-handler-body.js"></script>
<div id="log"></div>
<body>
<script>
setup({ explicit_done: true });

handlersListPromise.then(({ shadowedHandlers, notShadowedHandlers }) => {
  eventHandlerTest(shadowedHandlers, notShadowedHandlers, "body");

  done();
});
</script>