| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> | 3 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> |
| 4 </head> | 4 </head> |
| 5 <script src="../js/resources/js-test-pre.js"> </script> | 5 <script src="../../resources/js-test.js"> </script> |
| 6 <script> | 6 <script> |
| 7 window.jsTestIsAsync = true; | 7 window.jsTestIsAsync = true; |
| 8 | 8 |
| 9 function test() { | 9 function test() { |
| 10 document.forms.f.submit(); | 10 document.forms.f.submit(); |
| 11 } | 11 } |
| 12 </script> | 12 </script> |
| 13 <body onload="test()"> | 13 <body onload="test()"> |
| 14 <p>Test that when dirname attribute is specified then it is added in submission
body.</p> | 14 <p>Test that when dirname attribute is specified then it is added in submission
body.</p> |
| 15 | 15 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 32 shouldBeTrue('document.location.search.indexOf("txtareaInvalid.dir=ltr") !=
-1'); | 32 shouldBeTrue('document.location.search.indexOf("txtareaInvalid.dir=ltr") !=
-1'); |
| 33 shouldBeTrue('document.location.search.indexOf("inputRTLvalue.dir=ltr") != -
1'); | 33 shouldBeTrue('document.location.search.indexOf("inputRTLvalue.dir=ltr") != -
1'); |
| 34 finishJSTest(); | 34 finishJSTest(); |
| 35 } | 35 } |
| 36 | 36 |
| 37 successfullyParsed = true; | 37 successfullyParsed = true; |
| 38 </script> | 38 </script> |
| 39 </div> | 39 </div> |
| 40 </body> | 40 </body> |
| 41 </html> | 41 </html> |
| OLD | NEW |