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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/setCustomValidity-existence.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/setCustomValidity-existence.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/setCustomValidity-existence.html b/third_party/WebKit/LayoutTests/fast/forms/setCustomValidity-existence.html
index 89498c817b4c90cfdde456d45685ff9412218f93..5cb182b507207ca5f3f6aa3abccf304d772abcd0 100644
--- a/third_party/WebKit/LayoutTests/fast/forms/setCustomValidity-existence.html
+++ b/third_party/WebKit/LayoutTests/fast/forms/setCustomValidity-existence.html
@@ -21,7 +21,6 @@ parent.innerHTML = '<form>'
+ '<select name="victim"></select>'
+ '<output name="victim"></output>'
+ '<object name="victim"></object>'
- + '<keygen name="victim">'
+ '</form>';
shouldBe('typeof document.getElementsByTagName("input")[0].setCustomValidity', '"function"');
@@ -31,7 +30,6 @@ shouldBe('typeof document.getElementsByTagName("select")[0].setCustomValidity',
shouldBe('typeof document.getElementsByTagName("textarea")[0].setCustomValidity', '"function"');
shouldBe('typeof document.getElementsByTagName("output")[0].setCustomValidity', '"function"');
shouldBe('typeof document.getElementsByTagName("object")[0].setCustomValidity', '"function"');
-shouldBe('typeof document.getElementsByTagName("keygen")[0].setCustomValidity', '"function"');
</script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698