Closed
Bug 379120
Opened 18 years ago
Closed 18 years ago
[FIX]XSLTProcessor appears to perform validation in alpha 4
Categories
(Core :: DOM: Core & HTML, defect, P1)
Tracking
()
RESOLVED
FIXED
mozilla1.9alpha5
People
(Reporter: matthew, Assigned: bzbarsky)
References
Details
(Keywords: regression, testcase)
Attachments
(2 files, 1 obsolete file)
1.44 KB,
text/html
|
Details | |
5.03 KB,
patch
|
peterv
:
review+
peterv
:
superreview+
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9a4) Gecko/20070427 GranParadiso/3.0a4
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9a4) Gecko/20070427 GranParadiso/3.0a4
The wmlbrowser extension (wmlbrowser.mozdev.org) installs a component which uses nsIXSLTProcessor to transform WML to HTML before displaying.
This behaviour stopped working sometime between 3.0a3 and 3.0a4. I now get NS_ERROR_FAILURE from nsIXSLTProcessor.transformToDocument.
I haven't yet tracked down the reasons for all the problems, but one of them is resolved by changing
<div onload="">
to
<div>
(Yes, I know <div onload=""> is useless...)
"onload" is not a valid attribute on a "div" element in XHTML 1.0 Transitional (which is what the XSLT outputs), however this never used to be a problem.
Has there been validation added between the releases?
Reproducible: Always
Steps to Reproduce:
1. Set extensions.checkCompatibility to false.
2. Install wmlbrowser 0.7.15 from wmlbrowser.mozdev.org.
3. Load a test page such as http://wmlbrowser.mozdev.org/tests/basic/single-card.wml.
Actual Results:
The extension shows "wmlbrowser couldn't interpret this page". (Extra logging shows that this is due to a failure from transformToDocument, and that removal of onload from div fixes the error, at least for this test case.)
Expected Results:
I expected the page to render as it did in 3.0a3.
I don't have a simple test case for this at the moment.
Comment 1•18 years ago
|
||
Matthew, could you perform a binary search through the builds at http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/ to find a smaller regression range than "between a3 and a4"?
Even if you don't have a minimized testcase, uploading any document that shows the error to the bug would be good. Documents on the web tend to sometimes disappear before someone can look into fixing the bug.
Updated•18 years ago
|
Keywords: regression
Reporter | ||
Comment 2•18 years ago
|
||
Reporter | ||
Comment 3•18 years ago
|
||
Attachment #263148 -
Attachment is obsolete: true
Reporter | ||
Comment 4•18 years ago
|
||
The testcase breaks between 2007-03-28-04 and 2007-03-29-04.
Comment 5•18 years ago
|
||
Matthew, thanks for the testcase and regression range!
Bonsai link:
http://bonsai.mozilla.org/cvsquery.cgi?treeid=default&module=all&branch=HEAD&branchtype=match&dir=&file=&filetype=match&who=&whotype=match&sortby=Date&hours=2&date=explicit&mindate=2007-03-28+04&maxdate=2007-03-29+04&cvsroot=%2Fcvsroot
Based on that, I would think this is a regression from bug 349467.
Assignee: nobody → general
Component: Extension Compatibility → DOM
Keywords: testcase
OS: Windows Vista → All
Product: Firefox → Core
QA Contact: extension.compatibility → ian
Comment 6•18 years ago
|
||
Yes, the debugger indicates the error code comes from
nsEventListenerManager::AddScriptEventListener and context is null.
Blocks: 349467
Version: unspecified → Trunk
Assignee | ||
Comment 7•18 years ago
|
||
So either XSLT needs to ignore the retval from SetAttr, or we need to change AddScriptEventListener to just return early (not throw) when there is no script context. Probably the latter.
Flags: blocking1.9?
Assignee | ||
Comment 8•18 years ago
|
||
Assignee: general → bzbarsky
Status: NEW → ASSIGNED
Attachment #263341 -
Flags: superreview?(peterv)
Attachment #263341 -
Flags: review?(peterv)
Assignee | ||
Comment 9•18 years ago
|
||
Matthew, thank you for the excellent testcase and for narrowing down the regression range!
Priority: -- → P1
Summary: XSLTProcessor appears to perform validation in alpha 4 → [FIX]XSLTProcessor appears to perform validation in alpha 4
Target Milestone: --- → mozilla1.9alpha5
Note to reviewer, check if this is same as bug 374334 (sorry, it's late here)
Updated•18 years ago
|
Attachment #263341 -
Flags: superreview?(peterv)
Attachment #263341 -
Flags: superreview+
Attachment #263341 -
Flags: review?(peterv)
Attachment #263341 -
Flags: review+
Assignee | ||
Comment 11•18 years ago
|
||
> Note to reviewer, check if this is same as bug 374334
It's not quite, no. At least not given my "proposed fix" -- that just fixes the case of a missing script global, whereas the situation in bug 374334 has a script global.
Assignee | ||
Comment 12•18 years ago
|
||
Checked in.
Status: ASSIGNED → RESOLVED
Closed: 18 years ago
Resolution: --- → FIXED
Assignee | ||
Updated•17 years ago
|
Flags: blocking1.9?
Updated•6 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•