| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 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 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <iframe id="iframe"></iframe> | 7 <iframe id="iframe"></iframe> |
| 8 <script> | 8 <script> |
| 9 description('Checks input value is preserved after backward and forward'); | 9 description('Checks input value is preserved after backward and forward'); |
| 10 if (!window.eventSender || !window.internals) | 10 if (!window.eventSender || !window.internals) |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 debug(testCase['description'] + ':'); | 30 debug(testCase['description'] + ':'); |
| 31 shouldBeEqualToString('"' + testCase['actual'] + '"', testCase['expected
']); | 31 shouldBeEqualToString('"' + testCase['actual'] + '"', testCase['expected
']); |
| 32 } | 32 } |
| 33 debug(''); | 33 debug(''); |
| 34 } | 34 } |
| 35 | 35 |
| 36 window.onload = function() { | 36 window.onload = function() { |
| 37 document.getElementById('iframe').src = 'resources/preserve-value-after-hist
ory-back-frame.html?page1'; | 37 document.getElementById('iframe').src = 'resources/preserve-value-after-hist
ory-back-frame.html?page1'; |
| 38 }; | 38 }; |
| 39 </script> | 39 </script> |
| 40 <script src="../../../fast/js/resources/js-test-post.js"></script> | |
| 41 </body> | 40 </body> |
| 42 </html> | 41 </html> |
| OLD | NEW |