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

Side by Side Diff: LayoutTests/fast/forms/radio/radio-group.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> 1 <!DOCTYPE html>
2 <body> 2 <body>
3 <script src="../../js/resources/js-test-pre.js"></script> 3 <script src="../../js/resources/js-test-pre.js"></script>
4 4
5 <div id="parent"></div> 5 <div id="parent"></div>
6 6
7 <script> 7 <script>
8 description('Various tests about radio button group.'); 8 description('Various tests about radio button group.');
9 9
10 const Checked = true; 10 const Checked = true;
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 parent.innerHTML = ''; 145 parent.innerHTML = '';
146 parent.appendChild(original); 146 parent.appendChild(original);
147 var clonedRadio = original.cloneNode(true); 147 var clonedRadio = original.cloneNode(true);
148 shouldBeTrue('original.checked'); 148 shouldBeTrue('original.checked');
149 shouldBeTrue('clonedRadio.checked'); 149 shouldBeTrue('clonedRadio.checked');
150 150
151 parent.innerHTML = ''; 151 parent.innerHTML = '';
152 debug(''); 152 debug('');
153 </script> 153 </script>
154 154
155 <script src="../../js/resources/js-test-post.js"></script>
156 </body> 155 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698