Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / inspector / debugger / resources / pause-on-blocked-script-url.js
1 function testAction()
2 {
3     var a = document.createElement('a');
4     a.setAttribute('href', 'javascript:alert("FAIL!");');
5     document.body.appendChild(a);
6     a.click();
7 }