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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/willvalidate.html

Issue 2536993002: Remove support for the keygen tag (Closed)
Patch Set: Rebased Created 4 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/willvalidate.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/willvalidate.html b/third_party/WebKit/LayoutTests/fast/forms/willvalidate.html
index 64305604d762ee29e75709a3e86f5c7e6d066909..a4328feebc373a9ace45ec4cabb019326c71e2e8 100644
--- a/third_party/WebKit/LayoutTests/fast/forms/willvalidate.html
+++ b/third_party/WebKit/LayoutTests/fast/forms/willvalidate.html
@@ -21,7 +21,6 @@ parent.innerHTML = '<form>'
+ '<select name="victim"></select>'
+ '<output name="victim"></output>'
+ '<object name="victim"></object>'
- + '<keygen name="victim">'
+ '</form>';
var controls = document.getElementsByName('victim');
for (var i = 0; i < controls.length; i++)
@@ -87,10 +86,6 @@ debug('Object element');
parent.innerHTML = '<form><object></object></form>';
shouldBeFalse('document.getElementsByTagName("object")[0].willValidate');
-debug('');
-debug('Keygen element');
-parent.innerHTML = '<form><keygen></form>';
-shouldBeFalse('document.getElementsByTagName("keygen")[0].willValidate');
</script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698