blob: 820c6044b4d14fc735a7285a9936b369ec9627bc [file] [log] [blame]
function testAction()
{
var a = document.createElement('a');
a.setAttribute('href', 'javascript:alert("FAIL!");');
document.body.appendChild(a);
a.click();
}