Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / loader / stateobjects / resources / pushstate-in-iframe-child.html
blob517ed73b0289c61cd041c632fe54d7cff2b8812a
1 <script>
2 onunload = function() {
3 // disable page cache
6 onpopstate = function() {
7 var topWin = top;
8 // Verify that we are still in an iframe
9 if (topWin == window) {
10 topWin.document.body.innerHTML = "FAIL";
11 } else {
12 topWin.document.body.innerHTML = "PASS";
14 if (topWin.testRunner)
15 topWin.testRunner.notifyDone();
18 onload = function() {
19 history.pushState(null, null);
20 history.pushState(null, null);
21 setTimeout(function() { history.back() }, 0);
23 </script>