diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-10-12 00:04:40 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-10-12 00:04:40 +0000 |
commit | 2d0cba2617626af7a15f6e5b2ad9919721fddbe5 (patch) | |
tree | f46bf941776c90eedf9a26d6edb9e943bc1b1198 /www/firefox/files/patch-250862 | |
parent | MAINTAINER_UPDATE: games/crimson 0.4.4 (diff) |
* Update to 1.0.1.p (aka 0.10.1, aka 1.0PR)
* Add support for installing the new Firefox brand icon by defining
WITH_NEW_ICON [1]
For all that's new, check out http://www.mozilla.org/products/firefox/releases/
PR: 71781 [1]
Submitted by: Radek Kozlowski <radek@raadradd.com> [1]
Notes
Notes:
svn path=/head/; revision=118704
Diffstat (limited to 'www/firefox/files/patch-250862')
-rw-r--r-- | www/firefox/files/patch-250862 | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/www/firefox/files/patch-250862 b/www/firefox/files/patch-250862 deleted file mode 100644 index 05423dc84195..000000000000 --- a/www/firefox/files/patch-250862 +++ /dev/null @@ -1,22 +0,0 @@ -Index: mozilla/xpfe/communicator/resources/content/contentAreaDD.js -=================================================================== -RCS file: /cvsroot/mozilla/xpfe/communicator/resources/content/contentAreaDD.js,v -retrieving revision 1.32 -retrieving revision 1.32.88.1 -diff -u -r1.32 -r1.32.88.1 ---- xpfe/communicator/resources/content/contentAreaDD.js 10 Jul 2002 01:23:50 -0000 1.32 -+++ xpfe/communicator/resources/content/contentAreaDD.js 27 Aug 2004 01:13:39 -0000 1.32.88.1 -@@ -53,8 +53,11 @@ - { - var url = transferUtils.retrieveURLFromData(aXferData.data, aXferData.flavour.contentType); - -- // valid urls don't contain spaces ' '; if we have a space it isn't a valid url so bail out -- if (!url || !url.length || url.indexOf(" ", 0) != -1) -+ // valid urls don't contain spaces ' '; if we have a space it -+ // isn't a valid url, or if it's a javascript: or data: url, -+ // bail out -+ if (!url || !url.length || url.indexOf(" ", 0) != -1 || -+ /^\s*(javascript|data):/.test(url)) - return; - - switch (document.firstChild.getAttribute('windowtype')) { |