Closed
Bug 172650
Opened 23 years ago
Closed 23 years ago
Desktop shortcuts to pages cannot be created when <title> is missing
Categories
(SeaMonkey :: Bookmarks & History, defect)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: duanec, Assigned: mkaply)
Details
User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.2b) Gecko/20021002
Build Identifier: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.2b) Gecko/20021002
This URL doesn't contain a <title> tag:
http://www.nbsoftware.de/
So when I try to drag the URL icon (from the URL entry line) to the desktop, it
is not allowed. The icon changes to "cannot drop" when hovering over any desktop
folder.
M.Kaply has identified that the <title> tag is missing and it is causing this.
Reproducible: Always
Steps to Reproduce:
1. go to http://www.nbsoftware.de/
2. drag the URL line icon to the desktop
3. attempt to drop (will not work)
Actual Results:
URL object cannot be created.
Expected Results:
If no title, use the URL address for the object/icon title instead.
Updated•23 years ago
|
Whiteboard: DUPEME
Updated•23 years ago
|
Summary: Quick link to desktop not allowed... → Desktop shortcuts to pages cannot be created when <title> is missing
| Assignee | ||
Comment 1•23 years ago
|
||
I can fix this on OS/2
Assignee: ben → mkaply
Status: UNCONFIRMED → NEW
Ever confirmed: true
OS: other → OS/2
Whiteboard: DUPEME
| Assignee | ||
Comment 2•23 years ago
|
||
Fix:
Index: nsDragService.cpp
===================================================================
RCS file: /cvsroot/mozilla/widget/src/os2/nsDragService.cpp,v
retrieving revision 1.22
diff -u -r1.22 nsDragService.cpp
--- nsDragService.cpp 3 Sep 2002 23:35:58 -0000 1.22
+++ nsDragService.cpp 9 Oct 2002 02:40:44 -0000
@@ -134,7 +134,10 @@
{
holder.Left(url, lineIndex);
holder.Mid ( linkName, lineIndex + 1, (len/2) - (lineIndex + 1) );
- dragitem.hstrTargetName = DrgAddStrHandle(ToNewCString(linkName));
+ if (linkName.Length() > 0)
+ dragitem.hstrTargetName = DrgAddStrHandle(ToNewCString(linkName));
+ else
+ dragitem.hstrTargetName = DrgAddStrHandle(ToNewCString(url));
dragitem.hstrSourceName = DrgAddStrHandle(ToNewCString(url));
}
Checked in.,
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
| Assignee | ||
Comment 3•23 years ago
|
||
Marking this verified. I tested it, and it works.
Status: RESOLVED → VERIFIED
| Reporter | ||
Comment 4•23 years ago
|
||
Confirmed with nightly Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.2b)
Gecko/20021016
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•