| Index: LayoutTests/accessibility/lists.html
|
| diff --git a/LayoutTests/accessibility/lists.html b/LayoutTests/accessibility/lists.html
|
| deleted file mode 100644
|
| index 72ab3d17972f1dc0c4e1d950db589769b0bf9d96..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/accessibility/lists.html
|
| +++ /dev/null
|
| @@ -1,52 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<script>
|
| - if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| -</script>
|
| -<body id="body">
|
| -
|
| - <ul>
|
| - <li>test 1</li>
|
| - <li>test 2</li>
|
| - </ul>
|
| -
|
| - <ol>
|
| - <li>test 1</li>
|
| - <li>test 2</li>
|
| - </ol>
|
| -
|
| - <dl>
|
| - <dt>term 1</dt>
|
| - <dd>meaning 2</dd>
|
| -
|
| - <dt>term b</dt>
|
| - <dd>meaning 1</dd>
|
| - <dd>meaning 2</dd>
|
| - </dl>
|
| -
|
| - <BR><BR><BR><hr><BR>
|
| - <div id="result"></div>
|
| -
|
| - <script>
|
| - if (window.accessibilityController) {
|
| - var result = document.getElementById("result");
|
| -
|
| - var bodyElement = document.getElementById("body");
|
| - bodyElement.focus();
|
| - body = accessibilityController.focusedElement;
|
| - result.innerText += body.attributesOfChildren() + "\n\n";
|
| -
|
| - var olList = body.childAtIndex(0);
|
| - result.innerText += olList.attributesOfChildren() + "\n\n";
|
| -
|
| - var ulList = body.childAtIndex(1);
|
| - result.innerText += ulList.attributesOfChildren() + "\n\n";
|
| -
|
| - var dlList = body.childAtIndex(2);
|
| - result.innerText += dlList.attributesOfChildren() + "\n\n";
|
| -
|
| - }
|
| - </script>
|
| -</body>
|
| -</html>
|
|
|