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

Side by Side Diff: webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection.html

Issue 55025: Remove tests that have been upstreamed. Update test_expectations list... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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 <HTML>
2 <BODY>
3 Purpose: To add few select options dynamically and pass the test if the length i s correct. Bug#803364.
4 <form name="QuickForm">
5 <select name="mknm" >
6 <option value="">=======
7 </option>
8 </select>
9 </FORM>
10
11 <script>
12 if (window.layoutTestController)
13 layoutTestController.dumpAsText();
14
15 document.QuickForm.mknm.options[ 1 ] = new Option( "A");
16 document.QuickForm.mknm.options[ 2 ] = new Option( "B");
17 if (QuickForm.mknm.options.length =='3') {
18 document.write("TEST PASSED");
19 }
20 else
21 {
22 document.write("TEST FAILED");
23 }
24 </script>
25
26 </BODY>
27 </HTML>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698