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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/setCustomValidity-null-undefined.html

Issue 2536993002: Remove support for the keygen tag (Closed)
Patch Set: Rebased Created 3 years, 12 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <script src="../../resources/testharness.js"></script> 2 <script src="../../resources/testharness.js"></script>
3 <script src="../../resources/testharnessreport.js"></script> 3 <script src="../../resources/testharnessreport.js"></script>
4 <script> 4 <script>
5 5
6 function test1(elementType) { 6 function test1(elementType) {
7 test(function() { 7 test(function() {
8 var element = document.createElement(elementType); 8 var element = document.createElement(elementType);
9 element.setCustomValidity(''); 9 element.setCustomValidity('');
10 assert_equals(element.validationMessage, ''); 10 assert_equals(element.validationMessage, '');
(...skipping 17 matching lines...) Expand all
28 } 28 }
29 29
30 test1('button'); 30 test1('button');
31 test1('input'); 31 test1('input');
32 test1('textarea'); 32 test1('textarea');
33 test1('select'); 33 test1('select');
34 34
35 test2('output'); 35 test2('output');
36 test2('fieldset'); 36 test2('fieldset');
37 test2('object'); 37 test2('object');
38 test2('keygen');
39 </script> 38 </script>
40 </html> 39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698