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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/search/search-popup-crasher.html

Issue 2005093002: Remove non-standard 'results' attribute of INPUT element. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
OLDNEW
(Empty)
1 <HTML>
2 <HEAD>
3 <script>
4 window.onload = function()
5 {
6 if (window.testRunner)
7 testRunner.dumpAsText();
8
9 if (window.location.href.indexOf('formSubmitted') != -1)
10 return;
11 document.getElementById('searchBox').value= 'quentin';
12 document.getElementById('searchForm').submit();
13 };
14 </script>
15 </HEAD>
16 <BODY>
17
18 <p>This page tests that a page with a search popup does not crash, as reported i n <a href='https://bugs.webkit.org/show_bug.cgi?id=37141'>this bug</a>. Below is a search input that the test automatically fills then submits. Pass if this doe s not crash.</p><br><br>
19 <FORM action="" id="searchForm">
20 <INPUT autosave="my.search" id="searchBox" type="search" results="10" value="">< br>
21 <INPUT type="hidden" name="state" value="formSubmitted"><br>
22 <INPUT type="submit" value="Search">
23 </FORM>
24
25 </BODY>
26 </HTML>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698