зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1384216 - Part 2: Support CSS error messages with no parameters. r=heycam
This commit is contained in:
Родитель
c6c5e6928c
Коммит
e140a7dd6e
|
@ -2832,9 +2832,14 @@ Gecko_ReportUnexpectedCSSError(ErrorReporter* reporter,
|
|||
}
|
||||
}
|
||||
|
||||
nsDependentCSubstring paramValue(param, paramLen);
|
||||
nsAutoString wideParam = NS_ConvertUTF8toUTF16(paramValue);
|
||||
reporter->ReportUnexpectedUnescaped(message, wideParam);
|
||||
if (param) {
|
||||
nsDependentCSubstring paramValue(param, paramLen);
|
||||
nsAutoString wideParam = NS_ConvertUTF8toUTF16(paramValue);
|
||||
reporter->ReportUnexpectedUnescaped(message, wideParam);
|
||||
} else {
|
||||
reporter->ReportUnexpected(message);
|
||||
}
|
||||
|
||||
if (suffix) {
|
||||
reporter->ReportUnexpected(suffix);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче