Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(638)

Side by Side Diff: LayoutTests/fast/events/caller-access-from-event-listener.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <p>This test verifies that WebKit doesn't crash when accessing the 'caller' prop erty 1 <p>This test verifies that WebKit doesn't crash when accessing the 'caller' prop erty
2 from inside an event listener.</p> 2 from inside an event listener.</p>
3 <hr> 3 <hr>
4 <pre>PASS: WebKit didn't crash.</pre> 4 <pre>PASS: WebKit didn't crash.</pre>
5 <script src="../js/resources/js-test-pre.js"></script> 5 <script src="../../resources/js-test.js"></script>
6 <script> 6 <script>
7 function crash() { 7 function crash() {
8 eval('crash.caller'); 8 eval('crash.caller');
9 } 9 }
10 10
11 window.onload = crash; 11 window.onload = crash;
12 </script> 12 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698