| Index: LayoutTests/accessibility/transformed-element.html
|
| diff --git a/LayoutTests/accessibility/transformed-element.html b/LayoutTests/accessibility/transformed-element.html
|
| deleted file mode 100644
|
| index 30e80d6f1bb666c9229e3032f927bc8bbaaf230b..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/accessibility/transformed-element.html
|
| +++ /dev/null
|
| @@ -1,28 +0,0 @@
|
| -<html>
|
| -<script>
|
| - if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| -
|
| -</script>
|
| -<body id="body">
|
| - <!-- This test ensures that AX rectangles take transforms into account-->
|
| -
|
| - <div id="hiddenDiv" style="-webkit-transform: rotate(20deg); -webkit-transform-origin: left bottom; padding-left: 100px; width: 200px; border: 1px solid black;">
|
| - <a href="#b">hello</a>
|
| - </div>
|
| -
|
| - <div id="result"></div>
|
| -
|
| - <script>
|
| - if (window.accessibilityController) {
|
| - var result = document.getElementById("result");
|
| -
|
| - var body = document.getElementById("body");
|
| - body.focus();
|
| - var div = accessibilityController.focusedElement.childAtIndex(0);
|
| -
|
| - result.innerText += div.allAttributes();
|
| - }
|
| - </script>
|
| -</body>
|
| -</html>
|
|
|