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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/reportValidity-valid.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/reportValidity-valid.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/reportValidity-valid.html b/third_party/WebKit/LayoutTests/fast/forms/reportValidity-valid.html
index 98a9525f3f770829a948f2e940cd8e38c39c4482..b302db88e06c3b70567258cdc0d1f805792bb705 100644
--- a/third_party/WebKit/LayoutTests/fast/forms/reportValidity-valid.html
+++ b/third_party/WebKit/LayoutTests/fast/forms/reportValidity-valid.html
@@ -13,7 +13,6 @@
<textarea name="victim"></textarea>
<output name="victim"></output>
<object name="victim"></object>
-<keygen name="victim"></keygen>
</form>
<form action="" id="soon_to_be_happy_form">
<select required="" id="soon_to_be_happy_select">
@@ -32,7 +31,6 @@ shouldBe('document.getElementsByTagName("select")[0].reportValidity()', 'true');
shouldBe('document.getElementsByTagName("textarea")[0].reportValidity()', 'true');
shouldBe('document.getElementsByTagName("output")[0].reportValidity()', 'true');
shouldBe('document.getElementsByTagName("object")[0].reportValidity()', 'true');
-shouldBe('document.getElementsByTagName("keygen")[0].reportValidity()', 'true');
shouldBe('document.getElementById("happy_form")[0].reportValidity()', 'true');
debug('');

Powered by Google App Engine
This is Rietveld 408576698