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

Side by Side Diff: webkit/data/layout_tests/chrome/fast/dom/htmlformelement-indexed-getter.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
4 <p>
5 This test verifies that elements can be fetched by index from HTMLFormElements.
6 </p>
7
8 <form id='f'>
9 <input type="radio" name="a" value="a">HTMLInputElement</input>
10 </form>
11
12 <script>
13 if (window.layoutTestController) {
14 layoutTestController.dumpAsText();
15 }
16
17 var f = document.getElementById('f');
18
19 if (f[0]) {
20 document.write("Passed.");
21 } else {
22 document.write("Failed.");
23 }
24 </script>
25
26 </body>
27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698