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

Side by Side Diff: LayoutTests/fast/dom/HTMLSelectElement/selected-index-preserved-when-option-text-changes.html

Issue 48903019: Delete js-test-post.js. (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 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <body> 3 <body>
4 4
5 <select id="theSelect"> 5 <select id="theSelect">
6 <option>Item 1</option> 6 <option>Item 1</option>
7 <option>Item 2</option> 7 <option>Item 2</option>
8 <option>Item 3</option> 8 <option>Item 3</option>
9 </select> 9 </select>
10 <select id="theSelect2" multiple> 10 <select id="theSelect2" multiple>
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 56
57 var mySelect = document.getElementById("theSelect"); 57 var mySelect = document.getElementById("theSelect");
58 debug("Running tests on menu list"); 58 debug("Running tests on menu list");
59 runTest(); 59 runTest();
60 60
61 mySelect = document.getElementById("theSelect2"); 61 mySelect = document.getElementById("theSelect2");
62 debug("Running tests on list box"); 62 debug("Running tests on list box");
63 runTest(); 63 runTest();
64 64
65 </script> 65 </script>
66 <script src="../../js/resources/js-test-post.js"></script>
67 66
68 </body> 67 </body>
69 </html> 68 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698