Bug 11325
Summary: | JScript download link fails (works in Firefox) | ||
---|---|---|---|
Product: | WebKit | Reporter: | tim bates <timothy.c.bates> |
Component: | New Bugs | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED WORKSFORME | ||
Severity: | Normal | CC: | mrowe |
Priority: | P2 | ||
Version: | 420+ | ||
Hardware: | Mac | ||
OS: | OS X 10.4 | ||
URL: | http://projects.gandreas.com/widgetarium/download.php |
tim bates
1. go to the URL
2. click the link to down load beta 5
EXPECT: download initiated
OBTAINED: nothing happens
the onclick action that is failing is
javascript:beginDownload('downloader.php?file=1')"
The called funtion is here:
<script language="javascript">
downloaded = [];
function beginDownload(url) {
if (downloaded[url]) {
alert("That file has already been (or currently is being) downloaded");
} else {
downloaded[url] = 1;
window.location = url;
}
}
</script>
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Mark Rowe (bdash)
Works for me in the latest nightly. Have you got JavaScript turned on? Both this bug and bug 11326 are failing in a manner that indicates you may have turned it off.
tim bates
JScript was turned on, but, having restarted Safari, the jscript link now works. So.. can't replicate it myself.