Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / loader / stateobjects / pushstate-within-popstate-handler-assert.html
blob0e3e842b470c5ab5ae1df6e292b0f1c2155f7dd0
1 <script>
3 if (window.testRunner) {
4 testRunner.clearBackForwardList();
5 testRunner.dumpAsText();
6 testRunner.waitUntilDone();
9 onpopstate = function() {
10 history.pushState(null, null);
11 if (window.testRunner)
12 testRunner.notifyDone();
15 onload = function() {
16 history.pushState(null, null);
17 history.back();
20 </script>
21 <body>
22 This test checks to make sure that calling pushState() from within a popstate event handler doesn't ASSERT or crash.
23 </body>