blob: e8442b63e9956a81d828f4ed284c892a6b4e5a09 [file] [log] [blame]
<!DOCTYPE html>
<html>
<style>
body {
background-color: red;
}
</style>
<body onload='runTest()'>
</body>
<script>
function onContextMenu(event) {
if (window != window.parent && window.parent == window.top)
parent.recordContextMenu(event);
}
function runTest() {
document.addEventListener('contextmenu', onContextMenu);
parent.runTest();
}
</script>
</html>