blob: ad56153a134b8c68c30fd54c18987e7c0755ac23 [file] [log] [blame]
<p>This test verifies that WebKit doesn't crash when accessing the 'caller' property
from inside an event listener.</p>
<hr>
<pre>PASS: WebKit didn't crash.</pre>
<script src="../../resources/js-test.js"></script>
<script>
function crash() {
eval('crash.caller');
}
window.onload = crash;
</script>