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

Unified Diff: third_party/WebKit/LayoutTests/editing/undo/redo-after-detach.html

Issue 2005093002: Remove non-standard 'results' attribute of INPUT element. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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: third_party/WebKit/LayoutTests/editing/undo/redo-after-detach.html
diff --git a/third_party/WebKit/LayoutTests/editing/undo/redo-after-detach.html b/third_party/WebKit/LayoutTests/editing/undo/redo-after-detach.html
deleted file mode 100644
index 89509d06cc6b2871c2d1e2fae3ad16b299f68792..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/editing/undo/redo-after-detach.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<html>
- <head>
- <script>
- function test()
- {
- document.getElementById("tf").setAttribute("results", 0);
- document.execCommand("Redo");
- }
- </script>
- </head>
- <body onload="test()">
- This tests that we don't crash when redoing an editing command after the search field has been detached and reattached.<br>
- <input type="search" id="tf"><br>
- <script>
- if (window.testRunner)
- testRunner.dumpAsText();
-
- document.getElementById("tf").focus();
- document.execCommand("InsertText", false, "test");
- document.execCommand("Undo");
- </script>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698