| Index: LayoutTests/accessibility/document-attributes.html
|
| diff --git a/LayoutTests/accessibility/document-attributes.html b/LayoutTests/accessibility/document-attributes.html
|
| deleted file mode 100644
|
| index 7c606c2078f8a1b004f441317de2942d39160320..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/accessibility/document-attributes.html
|
| +++ /dev/null
|
| @@ -1,30 +0,0 @@
|
| -<html>
|
| -<script>
|
| - if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| -</script>
|
| -<head>
|
| -<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
| -<body id="body">
|
| - <!-- This tests the exposure of a document's encoding and URI to assistive technologies -->
|
| - <div id="result"></div>
|
| - <script>
|
| - if (window.accessibilityController) {
|
| - var body = document.getElementById("body");
|
| - body.focus();
|
| - var webArea = accessibilityController.focusedElement;
|
| - var result = document.getElementById("result");
|
| -
|
| - var documentEncoding = webArea.documentEncoding;
|
| - var documentURI = webArea.documentURI;
|
| -
|
| - if (documentEncoding == "UTF-8" && documentURI == location.href) {
|
| - result.innerText = "Passed";
|
| - }
|
| - else {
|
| - result.innerText = "Failed:\nExpected: UTF-8 and " + location.href + ".\nActual: " + documentEncoding + " and " + documentURI + ".";
|
| - }
|
| - }
|
| - </script>
|
| -</body>
|
| -</html>
|
|
|