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

Unified Diff: LayoutTests/fast/forms/autocomplete-off-with-default-value-does-not-clear.html

Issue 14195011: Removed WONTFIX tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/fast/forms/autocomplete-off-with-default-value-does-not-clear.html
diff --git a/LayoutTests/fast/forms/autocomplete-off-with-default-value-does-not-clear.html b/LayoutTests/fast/forms/autocomplete-off-with-default-value-does-not-clear.html
deleted file mode 100644
index 44d0762fb8658a64e7c4b19a99719ae929a41c1e..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/forms/autocomplete-off-with-default-value-does-not-clear.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<script>
-
-if (window.testRunner) {
- testRunner.overridePreference("WebKitUsesPageCachePreferenceKey", 1);
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
-}
-
-function loaded()
-{
- document.getElementById("testInput").value = "SomeNonDefaultValue";
- setTimeout("location.href = 'resources/go-back.html'", 0);
-}
-
-function pageShown(evt)
-{
- if (evt.persisted)
- setTimeout("finishUp()", 0);
-}
-
-function finishUp()
-{
- document.getElementById("logger").innerText = document.getElementById("testInput").value;
- if (window.testRunner)
- testRunner.notifyDone();
-}
-
-</script>
-<body onload="loaded()" onpageshow="pageShown(event)">
-This page has a text input element with a default value and autocomplete set to off. When restored from the page cache its value should *not* be cleared.<br>
-<input id="testInput" type="test" autocomplete="off" value="DefaultValue">
-<div id="logger"></div>
-</body>

Powered by Google App Engine
This is Rietveld 408576698