| <script src="../../resources/js-test-pre.js"></script> |
| <body style="min-width: 5000px; min-height: 5000px"> |
| description('Checks that the popstate event fires when dispatched via createEvent'); |
| onpopstate = function(event) |
| if(!!event.state && !!event.state.testValue) |
| testPassed('Popstate state: (' + event.state.testValue +')'); |
| var evt = new PopStateEvent('popstate', { |
| state: { testValue: 'Success' } |
| window.dispatchEvent(evt); |
| setTimeout(finishJSTest, 500); |
| var jsTestIsAsync = true; |
| <script src="../../resources/js-test-post.js"></script> |