Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / ManualTests / empty-link-target.html
blob06ccd0c7201b55878a90a51e4fc9ec244a983685
1 <html>
2 <head><script>
3 function print(message) {
4 var paragraph = document.createElement("p");
5 paragraph.appendChild(document.createTextNode(message));
6 document.getElementById("console").appendChild(paragraph);
9 function test()
11 if (window.layoutTestController)
12 layoutTestController.dumpAsText();
14 var e = document.createEvent("MouseEvents");
15 e.initEvent("click", true, false);
16 document.getElementById('a').dispatchEvent(e);
17 print("PASS");
19 </script></head>
21 <body onload="test()">
22 <p>Bug: <a href="http://bugs.webkit.org/show_bug.cgi?id=6382">REGRESSION: Repro crash when clicking link with target="_blank"</a></p>
23 <p>If the test passes, you will see a PASS message below. (It's normal for a new window to open.)</p>
24 <hr>
25 <a id="a" href="resources/popup200x200.html" target="_blank"></a>
26 <div id='console'/>
27 </body>
28 </html>