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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/empty-textarea-toggle-disabled.html

Issue 1524663002: Move textarea-related tests to fast/forms/textarea/, part 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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: third_party/WebKit/LayoutTests/fast/forms/empty-textarea-toggle-disabled.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/empty-textarea-toggle-disabled.html b/third_party/WebKit/LayoutTests/fast/forms/empty-textarea-toggle-disabled.html
deleted file mode 100644
index 6d3a70a97974e5b4d93bc2f1ef86cac29402ea8d..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/empty-textarea-toggle-disabled.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function test()
-{
- if (window.testRunner)
- testRunner.dumpAsText();
-
- ta = document.getElementById('ta');
- ta.disabled = false;
- ta.focus();
- if (window.eventSender) {
- eventSender.keyDown('a', []);
- var result = ta.value;
- if (result == "a")
- document.write("<pre>SUCCESS</pre>");
- else
- document.write("<pre>FAIL, result was '" + result + "'.</pre>");
- }
-}
-</script>
-</head>
-<body onload="test();">
-<p>Tests that toggling disabled state in a textarea leaves the textarea typeable.
-To Test manually, load this page and type in the textarea. If you can type, then
-the test succeeded.<p>
-<textarea id="ta" disabled="disabled"></textarea>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698