Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(745)

Unified Diff: LayoutTests/accessibility/document-attributes.html

Issue 40513003: Delete/move the remaining stale tests in TestExpectations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: delete plugins/reentrant-update-widget-positions.html as well Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698