Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <title>Test to verify that "document.anchors" returns anchor elements with "id" attribute also.</title> | |
| 3 <html> | |
| 4 <head> | |
| 5 <script src="../../resources/testharness.js"></script> | |
| 6 <script src="../../resources/testharnessreport.js"></script> | |
| 7 </head> | |
| 8 <body> | |
| 9 <a id="a" href="foo"></a> | |
| 10 <script> | |
| 11 test(function() { | |
| 12 assert_equals(document.anchors.length, 1); | |
| 13 }); | |
| 14 </script> | |
| 15 </body> | |
| 16 </html> | |
| OLD | NEW |