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

Unified Diff: third_party/WebKit/LayoutTests/editing/spelling/grammar.html

Issue 2188703002: Remove layout tests only for grammar checking (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/editing/spelling/grammar-edit-word.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/editing/spelling/grammar.html
diff --git a/third_party/WebKit/LayoutTests/editing/spelling/grammar.html b/third_party/WebKit/LayoutTests/editing/spelling/grammar.html
deleted file mode 100644
index 408c4e257ad36317885e2187657bd4dc08098493..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/editing/spelling/grammar.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<html>
-<head>
-<script src="../../resources/js-test.js"></script>
-
-<style>
-.editing {
- border: 2px solid red;
- padding: 12px;
- font-size: 24px;
-}
-</style>
-<script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
-
-<script>
-function editingTest() {
- if (window.testRunner)
- testRunner.dumpAsText();
-
- document.getElementById("root").focus();
- document.execCommand("InsertText", false, "I have a issue.");
-
- if (window.internals) {
- shouldBecomeEqual('internals.hasGrammarMarker(document, 7, 1)', 'true', function() {
- document.getElementById("root").style.display = "none";
- finishJSTest();
- });
- }
-}
-
-</script>
-
-<title>Editing Test</title>
-</head>
-<body>
-<div contenteditable id="root" class="editing"></div>
-<script>
-description("This tests whether the grammatically-incorrect phrase "
- + "'I have a issue' has grammar marker on 'a'.");
-
-jsTestIsAsync = true;
-
-if (window.internals)
- internals.settings.setUnifiedTextCheckerEnabled(true);
-
-editingTest();
-</script>
-</body>
-</html>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/editing/spelling/grammar-edit-word.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698