mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 511487 - XSLT transformation fails with onload in FF3.6a1, r=peterv
This commit is contained in:
parent
af258882ac
commit
4235ec698d
@ -4281,7 +4281,9 @@ nsGenericElement::AddScriptEventListener(nsIAtom* aEventName,
|
||||
GetEventListenerManagerForAttr(getter_AddRefs(manager),
|
||||
getter_AddRefs(target),
|
||||
&defer);
|
||||
NS_ENSURE_STATE(manager);
|
||||
if (!manager) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
defer = defer && aDefer; // only defer if everyone agrees...
|
||||
PRUint32 lang = GetScriptTypeID();
|
||||
|
@ -49,6 +49,7 @@ _TEST_FILES = test_bug319374.xhtml \
|
||||
test_bug427060.html \
|
||||
test_bug468208.html \
|
||||
test_bug453441.html \
|
||||
test_bug511487.html \
|
||||
$(NULL)
|
||||
|
||||
libs:: $(_TEST_FILES)
|
||||
|
60
content/xslt/tests/mochitest/test_bug511487.html
Normal file
60
content/xslt/tests/mochitest/test_bug511487.html
Normal file
@ -0,0 +1,60 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=511487
|
||||
-->
|
||||
<head>
|
||||
<title>Test for Bug 511487</title>
|
||||
<script type="application/javascript" src="/MochiKit/packed.js"></script>
|
||||
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=511487">Mozilla Bug 511487</a>
|
||||
<p id="display"></p>
|
||||
<div id="content" style="display: none">
|
||||
|
||||
</div>
|
||||
<pre id="test">
|
||||
<script type="application/javascript">
|
||||
|
||||
/** Test for Bug 511487 **/
|
||||
|
||||
var didTransform = false;
|
||||
var processor = new XSLTProcessor();
|
||||
var style =
|
||||
'<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns="http://www.w3.org/1999/xhtml">' +
|
||||
'<xsl:output method="xml" version="1.0" encoding="UTF-8" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" />' +
|
||||
'<xsl:template match="wml">' +
|
||||
'<html xmlns="http://www.w3.org/1999/xhtml">' +
|
||||
'<head>' +
|
||||
'<title>XSLT test</title>' +
|
||||
'</head>' +
|
||||
'<body onload="window.alert(this)">' +
|
||||
'</body>' +
|
||||
'</html>' +
|
||||
'</xsl:template>' +
|
||||
'</xsl:stylesheet>';
|
||||
var styleDoc = new DOMParser().parseFromString (style, "text/xml");
|
||||
|
||||
var data =
|
||||
'<?xml version="1.0"?>' +
|
||||
'<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">' +
|
||||
'<wml><card><p>paragraph</p></card></wml>';
|
||||
var originalDoc = new DOMParser().parseFromString(data, "text/xml");
|
||||
|
||||
processor.importStylesheet(styleDoc);
|
||||
try {
|
||||
var transformedDocument = processor.transformToDocument(originalDoc);
|
||||
didTransform = true;
|
||||
} catch (e) {
|
||||
ok(false, e);
|
||||
}
|
||||
|
||||
ok(didTransform, "transformToDocument didn't succeed!");
|
||||
|
||||
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user