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

Side by Side Diff: LayoutTests/fast/forms/fieldset/focus-in-fieldset-disabled.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 <fieldset disabled> 4 <fieldset disabled>
5 <input id=input1> 5 <input id=input1>
6 </fieldset> 6 </fieldset>
7 <script> 7 <script>
8 var input1 = document.getElementById('input1'); 8 var input1 = document.getElementById('input1');
9 debug('A form control in a disabled fieldset is not focusable:'); 9 debug('A form control in a disabled fieldset is not focusable:');
10 shouldBe('input1.focus(); document.activeElement', 'document.body'); 10 shouldBe('input1.focus(); document.activeElement', 'document.body');
11 11
12 debug('It becomes focusable if the fieldset is enabled:'); 12 debug('It becomes focusable if the fieldset is enabled:');
13 document.getElementsByTagName('fieldset')[0].disabled = false; 13 document.getElementsByTagName('fieldset')[0].disabled = false;
14 shouldBe('input1.focus(); document.activeElement', 'input1'); 14 shouldBe('input1.focus(); document.activeElement', 'input1');
15 </script> 15 </script>
16 <script src="../../js/resources/js-test-post.js"></script>
17 </body> 16 </body>
18 17
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/fieldset/fieldset-type.html ('k') | LayoutTests/fast/forms/file/display-none-upload-button.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698