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

Side by Side Diff: LayoutTests/fast/dom/Window/window-find-crash.html

Issue 205523003: Remove beforeload events. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove more tests Created 6 years, 9 months 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
(Empty)
1 <!DOCTYPE html>
2 <script src="../../forms/resources/common.js"></script>
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
6
7 function find() {
8 document.getElementById('find').contentWindow.find('g', false, true, true);
9 }
10
11 waitUntilLoadedAndAutofocused(function() {
12 document.write('PASS; NOT CRASHED');
13 testRunner.notifyDone();
14 });
15 </script>
16 <iframe id="find"></iframe>
17 <input autofocus>
18 <iframe onbeforeload="find()"></iframe>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698