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

Side by Side Diff: LayoutTests/fast/forms/focus-on-control-with-zero-size.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 <style> 4 <style>
5 input { 5 input {
6 border: none; 6 border: none;
7 padding: 0; 7 padding: 0;
8 margin: 0; 8 margin: 0;
9 } 9 }
10 </style> 10 </style>
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 input1.style.height = '0px'; 45 input1.style.height = '0px';
46 shouldBe('input1.offsetHeight', '0', true); 46 shouldBe('input1.offsetHeight', '0', true);
47 input1.focus(); 47 input1.focus();
48 shouldBe('document.activeElement', 'input1'); 48 shouldBe('document.activeElement', 'input1');
49 49
50 finishJSTest(); 50 finishJSTest();
51 } 51 }
52 52
53 jsTestIsAsync = true; 53 jsTestIsAsync = true;
54 </script> 54 </script>
55 <script src="../js/resources/js-test-post.js"></script>
56 </body> 55 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698