axe-core
Version:
Accessibility engine for automated Web UI testing
23 lines (21 loc) • 420 B
HTML
<html>
<head>
<title>Message Iframe Fixture</title>
</head>
<body>
<script src="../../../lib/core/utils/uuid.js"></script>
<script>
var utils = {};
var axe = {
version: '3.0.4'
};
</script>
<script src="../../../lib/core/utils/respondable.js"></script>
<script>
utils.respondable.subscribe('axe.ping', function (data, keepalive, respond) {
respond({axe: true});
});
</script>
</body>
</html>