Closed
Bug 227818
Opened 22 years ago
Closed 22 years ago
Error loading stylesheet: Parsing an XSLT stylesheet failed.
Categories
(Core :: XSLT, defect)
Tracking
()
RESOLVED
INVALID
People
(Reporter: eightyj, Assigned: peterv)
References
()
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031007 Firebird/0.7
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031007 Firebird/0.7
See Summary
Reproducible: Always
Steps to Reproduce:
1.Enter address
2.Click on go button
3.
Expected Results:
Display page
Comment 1•22 years ago
|
||
source shows:
<?xml-stylesheet type="text/xsl" href="../../../../COMMON/SGazette/article.xsl"?>
not sure if Gecko accept relative XSL URIs.
IE6 loads the page ok.
Assignee: general → peterv
Component: Browser-General → XSLT
QA Contact: general → keith
Comment 2•22 years ago
|
||
Valid namespace URI for XSLT cures the problem:
- xmlns:xsl="http://www.w3.org/TR/WD-xsl"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
Anyway, VBScript in your XSL will not work in Mozilla.
hmm... kind'a strange.. we should interpert this stylesheet as an LRE stylesheet
since the namespace is unknown.
Anyhow the testcase is invalid (uses wrong namespace) and clearly relies on
IE-only features (VBscript). If fixing these two problems doesn't fix the
problem then feel free to reopen a bug and attach a fixed testcase (and please
make it smaller, that thing is huge)
Status: UNCONFIRMED → RESOLVED
Closed: 22 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•