Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / ManualTests / submit-form-with-target-twice.html
blob9b104107263e76b329095979ba659b18cd124af5
1 <html>
2 <script>
3 function runTest() {
4 var form = document.getElementById('f');
6 form.submit();
7 form.submit();
9 </script>
10 <form id="f" target="foo"><input></form>
11 <p>This tests that calling form.submit() twice in a row from JavaScript, on a form with a custom target and with at least one text field does not cause an assertion in a debug build of Safari.
12 </p>
13 <p>To test this, click the button below. A new window should open up and Safari should not assert.</p>
14 <button onclick="runTest()">Click Here</button>
15 </html>