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

Unified Diff: LayoutTests/editing/deleting/delete-all-text-in-text-field-assertion.html

Issue 13532011: Stop inserting placeholders for TextArea and Input elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update textarea-placeholder-visibility-1.html expectation Created 7 years, 8 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/editing/deleting/delete-all-text-in-text-field-assertion.html
diff --git a/LayoutTests/editing/deleting/delete-all-text-in-text-field-assertion.html b/LayoutTests/editing/deleting/delete-all-text-in-text-field-assertion.html
deleted file mode 100644
index 941ef990d6bcde4b962cdb92cbaa466b07112c91..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/deleting/delete-all-text-in-text-field-assertion.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<html>
-<head>
-<script>
-if (window.testRunner)
- testRunner.dumpEditingCallbacks();
-</script>
-
-<script>
-if (window.testRunner) {
- testRunner.waitUntilDone();
- testRunner.dumpAsText();
-}
-</script>
-<script src="../editing.js"></script>
-</head>
-<body>
-<div>Bug 9358: REGRESSION: Assertion failure in HTMLInputElement::setValueFromRenderer (value == constrainValue(value)) when deleting all text</div>
-<div><a href="https://bugs.webkit.org/show_bug.cgi?id=9358">https://bugs.webkit.org/show_bug.cgi?id=9358</a></div>
-<div><br></div>
-<form>
-Assertion fails when all characters are deleted: <input type="text" id="t" value="X">
-</form>
-<script>
-document.getElementById("t").focus();
-document.execCommand("SelectAll");
-document.execCommand("Delete");
-</script>
-<div>SUCCESS if the test didn't crash and you see this message.</div>
-<script>
-if (window.testRunner) {
- testRunner.notifyDone()
-}
-</script>
-<body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698