| Index: webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection_call_as_function.html
|
| ===================================================================
|
| --- webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection_call_as_function.html (revision 12664)
|
| +++ webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection_call_as_function.html (working copy)
|
| @@ -1,32 +0,0 @@
|
| -<html>
|
| -<body>
|
| -
|
| -<select id='s'>
|
| - <option id='o0'>o0</option>
|
| - <option id='o1'>o1</option>
|
| -</select>
|
| -
|
| -<script>
|
| -if (window.layoutTestController) {
|
| - layoutTestController.dumpAsText();
|
| -}
|
| -
|
| -var select = document.getElementById('s');
|
| -var options = select.options;
|
| -
|
| -try {
|
| - var o0 = options(0);
|
| - var o1 = options(1);
|
| - if (document.getElementById('o0') == o0 &&
|
| - document.getElementById('o1') == o1) {
|
| - document.write('PASS');
|
| - } else {
|
| - document.write('FAIL');
|
| - }
|
| -} catch(e) {
|
| - document.write('FAIL: threw exception ' + e);
|
| -}
|
| -</script>
|
| -
|
| -</body>
|
| -</html>
|
|
|