/* Any copyright is dedicated to the public domain. http://creativecommons.org/publicdomain/zero/1.0/ */ // Bug 764718 - Test that clicking a link with _target=blank works. "use strict"; SimpleTest.waitForExplicitFinish(); browserElementTestHelpers.setEnabledPref(true); browserElementTestHelpers.addPermission(); function runTest() { var iframe = document.createElement('iframe'); iframe.setAttribute('mozbrowser', 'true'); iframe.addEventListener('mozbrowseropenwindow', function(e) { is(e.detail.url, 'http://example.com/'); e.preventDefault(); SimpleTest.finish(); }); iframe.src = "file_browserElement_TargetBlank.html"; document.body.appendChild(iframe); } addEventListener('testready', runTest);