Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / events / stopPropagation-submit.html
blob93e97ce06e43b1b8a5319497fe7c75c5e165d221
1 <p>This test checks whether event.stopPropagation() prevents the
2 default action. It should not! If the default was prevented, you'll
3 see a link below and the text FAIL. On success you will see PASS (and
4 ?x=0&y=0).
5 </p>
6 <form action="resources/stopPropagation-submit-target.html">
7 <input type="image" id="image1" onclick="event.stopPropagation()" value="click here">
8 </form>
9 <p>
10 FAIL
11 <script>
12 if (window.testRunner) {
13 testRunner.dumpAsText();
14 testRunner.waitUntilDone();
17 var submit = document.getElementById("image1");
18 submit.click();
20 </script>