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

Side by Side Diff: LayoutTests/fast/forms/radio/ValidityState-valueMissing-radio.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../js/resources/js-test-pre.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <p id="description"></p> 7 <p id="description"></p>
8 <div id="console"></div> 8 <div id="console"></div>
9 <script> 9 <script>
10 description('valueMissing tests for radio buttons'); 10 description('valueMissing tests for radio buttons');
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 requiredButton = document.getElementsByName('victim')[0]; 77 requiredButton = document.getElementsByName('victim')[0];
78 var button = document.getElementsByName('victim')[1]; 78 var button = document.getElementsByName('victim')[1];
79 shouldBeTrue('requiredButton.validity.valueMissing'); 79 shouldBeTrue('requiredButton.validity.valueMissing');
80 shouldBeTrue('button.validity.valueMissing'); 80 shouldBeTrue('button.validity.valueMissing');
81 parent.removeChild(button); 81 parent.removeChild(button);
82 shouldBeFalse('button.validity.valueMissing'); 82 shouldBeFalse('button.validity.valueMissing');
83 parent.removeChild(requiredButton); 83 parent.removeChild(requiredButton);
84 shouldBeFalse('requiredButton.validity.valueMissing'); 84 shouldBeFalse('requiredButton.validity.valueMissing');
85 85
86 </script> 86 </script>
87 <script src="../../js/resources/js-test-post.js"></script>
88 </body> 87 </body>
89 </html> 88 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/placeholder-stripped.html ('k') | LayoutTests/fast/forms/radio/radio-attr-order.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698