OLD | NEW |
1 <script src="../../js/resources/js-test-pre.js"></script> | 1 <script src="../../js/resources/js-test-pre.js"></script> |
2 <script> | 2 <script> |
3 description('State vector should be empty if nothing is saved.'); | 3 description('State vector should be empty if nothing is saved.'); |
4 if (window.internals) { | 4 if (window.internals) { |
5 var states = internals.formControlStateOfPreviousHistoryItem(); | 5 var states = internals.formControlStateOfPreviousHistoryItem(); |
6 shouldBe('states.length', '0'); | 6 shouldBe('states.length', '0'); |
7 } else { | 7 } else { |
8 debug('Need window.internals.formControlStateOfPreviousHistoryItem().'); | 8 debug('Need window.internals.formControlStateOfPreviousHistoryItem().'); |
9 } | 9 } |
10 jsTestIsAsync = true; | 10 jsTestIsAsync = true; |
11 finishJSTest(); | 11 finishJSTest(); |
12 </script> | 12 </script> |
13 <script src="../../js/resources/js-test-post.js"></script> | |
OLD | NEW |