зеркало из https://github.com/mozilla/gecko-dev.git
Work around possible deficiency in HTML parser by replacing runs of whitespace with a single space in the title attribute. b=67127 Patch by Steuard Jensen <steuard+moz@slimy.com>. r=bryner sr=dbaron
This commit is contained in:
Родитель
396f86ad95
Коммит
04ed46bf5d
|
@ -266,7 +266,8 @@ function FillInHTMLTooltip(tipElement)
|
||||||
for (var i = 0; i < texts.length; ++i) {
|
for (var i = 0; i < texts.length; ++i) {
|
||||||
var t = texts[i];
|
var t = texts[i];
|
||||||
if (t && t.search(/\S/) >= 0) {
|
if (t && t.search(/\S/) >= 0) {
|
||||||
tipNode.setAttribute("label", t);
|
// XXX - Short-term fix to bug 67127: collapse whitespace here
|
||||||
|
tipNode.setAttribute("label", t.replace(/\s+/g, " ") );
|
||||||
retVal = true;
|
retVal = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче