Closed
Bug 94921
Opened 24 years ago
Closed 23 years ago
Title not shown in titlebar for xml doc with xslt
Categories
(Core :: XSLT, defect, P1)
Core
XSLT
Tracking
()
VERIFIED
FIXED
mozilla0.9.9
People
(Reporter: bugzilla, Assigned: peterv)
References
()
Details
jud, do you know who should get this?
User feedback:
Netscape 6.1 Problem
Primary Browser: ie55
Operating System: Win2K
Language: English
Issue Summary: The title is not shown in the titlebar when I present a XML-doc
with XSLT
Component: Navigator
Doing What: Other Testing XML/XSLT in NN 6.1
Severity: SomethingDidNotWorkRight
Can Reproduce: DoNotKnow
Try this URL: http://www.private.weboffice.dk/crn/links.xml
Issue Detail:
I've made a simple XML-document and transforms it
with a simple XSL-stylesheet. I have a <TITLE>-tag
in the stylesheet, but the titlebar (top of the
Navigator window) do not change. Instead it keeps
the last visited webpage's title visible.
I'll put this to XSLT since XHTML titles work correctly when XSLT is not involved.
Assignee: valeski → kvisco
Component: XP Apps → XSLT
QA Contact: sairuh → kvisco
Comment 2•24 years ago
|
||
This is one of the infamous "you can't do it js, you can't do it XSLT" bugs.
The following js exposes the same bug:
tmp = window.open('about:blank');
titleEl = tmp.document.createElement('title');
tmp.document.document.appendChild(titleEl);
titleVal = tmp.document.createTextNode("This won't show");
titleEl.appendChild(titleVal);
My testing suggests that the title in the display can only be changed thru
document.title. Modifying the DOM just doesn't do anything at all. And modifying
document.title does nothing to the DOM, at least nothing I can see in DumpDOM.
Peter, I guess it's you, whether you change the component or not.
At least you might have to workaround this in the output. Ugh.
Axel
Assignee: kvisco → peterv
OS: Windows 2000 → All
Hardware: PC → All
Assignee | ||
Updated•24 years ago
|
Status: NEW → ASSIGNED
Priority: -- → P1
Target Milestone: --- → mozilla0.9.4
Assignee | ||
Comment 5•23 years ago
|
||
All these missed the bus/train/plane/boat/whatever. Sad.
Target Milestone: mozilla0.9.5 → mozilla0.9.6
Assignee | ||
Comment 6•23 years ago
|
||
The patch for 96647 is nearly done, but it's a bit big and we need time for
reviews, unless something serious comes up this should land early in 0.9.7.
Target Milestone: mozilla0.9.6 → mozilla0.9.7
Assignee | ||
Updated•23 years ago
|
Target Milestone: mozilla0.9.7 → mozilla0.9.8
Assignee | ||
Comment 7•23 years ago
|
||
Patch for bug 96647 should be final, so these will be fixed early in 0.9.9
(really!).
Target Milestone: mozilla0.9.8 → mozilla0.9.9
Assignee | ||
Comment 8•23 years ago
|
||
Fixed by the patch for bug 96647.
Status: ASSIGNED → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•