mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 841812 - Avoid crashing when changing attributes on an invalidly parented <textPath>. r=roc
This commit is contained in:
parent
8765553d79
commit
a5d156f4b3
11
layout/svg/crashtests/841812-1.svg
Normal file
11
layout/svg/crashtests/841812-1.svg
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||||
|
<text>
|
||||||
|
<circle>
|
||||||
|
<textPath id="t" xlink:href="data:text/html,1" />
|
||||||
|
</circle>
|
||||||
|
</text>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
window.addEventListener("load", function() { document.getElementById("t").removeAttribute('xlink:href'); }, false);
|
||||||
|
</script>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 363 B |
@ -152,3 +152,4 @@ load 789390-1.html
|
|||||||
load 808318-1.svg
|
load 808318-1.svg
|
||||||
load 813420-1.svg
|
load 813420-1.svg
|
||||||
load 841163-1.svg
|
load 841163-1.svg
|
||||||
|
load 841812-1.svg
|
||||||
|
@ -2956,8 +2956,10 @@ nsSVGTextFrame2::MutationObserver::AttributeChanged(
|
|||||||
aAttribute == nsGkAtoms::href) {
|
aAttribute == nsGkAtoms::href) {
|
||||||
// Blow away our reference, if any
|
// Blow away our reference, if any
|
||||||
nsIFrame* childElementFrame = aElement->GetPrimaryFrame();
|
nsIFrame* childElementFrame = aElement->GetPrimaryFrame();
|
||||||
childElementFrame->Properties().Delete(nsSVGEffects::HrefProperty());
|
if (childElementFrame) {
|
||||||
mFrame->NotifyGlyphMetricsChange();
|
childElementFrame->Properties().Delete(nsSVGEffects::HrefProperty());
|
||||||
|
mFrame->NotifyGlyphMetricsChange();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (aNameSpaceID == kNameSpaceID_None &&
|
if (aNameSpaceID == kNameSpaceID_None &&
|
||||||
|
Loading…
Reference in New Issue
Block a user