Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / frames / detach-frame-nested-no-crash.html
blob808f086fe4833c3776b75b9e235ab019f3d91450
1 <!DOCTYPE html>
2 <html>
3 <script src="../../resources/js-test.js"></script>
4 <script>
5 description("Verifies that nested frame detach does not crash.");
7 if (window.testRunner)
8 testRunner.dumpAsText();
10 var count = 0;
11 function removeFrame() {
12 document.body.removeChild(document.getElementById("frame"));
13 if (++count == 2)
14 testRunner.notifyDone();
16 </script>
17 <iframe id="frame" src="resources/detach-frame-nested-subframe.html"></iframe>
18 </html>