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

Side by Side Diff: LayoutTests/fast/forms/input-width-height-attributes-without-renderer.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 <html> 1 <html>
2 <head> 2 <head>
3 <head> 3 <head>
4 <script src="../../fast/js/resources/js-test-pre.js"></script> 4 <script src="../../fast/js/resources/js-test-pre.js"></script>
5 <script> 5 <script>
6 jsTestIsAsync = true; 6 jsTestIsAsync = true;
7 function test() 7 function test()
8 { 8 {
9 inputElement = document.getElementById("inputElement"); 9 inputElement = document.getElementById("inputElement");
10 shouldBe('inputElement.width', '50'); 10 shouldBe('inputElement.width', '50');
11 shouldBe('inputElement.height', '50'); 11 shouldBe('inputElement.height', '50');
12 finishJSTest(); 12 finishJSTest();
13 13
14 } 14 }
15 </script> 15 </script>
16 </head> 16 </head>
17 <body onload="test()"> 17 <body onload="test()">
18 <input id="inputElement" type="image" width="50" height="50" style="display:none "> 18 <input id="inputElement" type="image" width="50" height="50" style="display:none ">
19 <script src="../../fast/js/resources/js-test-post.js"></script>
20 </body> 19 </body>
21 </html> 20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698