Fixing silly placement of '||'. No code change.

This commit is contained in:
jst%netscape.com 2003-03-22 03:24:57 +00:00
Родитель c8c6f4afa4
Коммит cbafad0cf7
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -199,8 +199,8 @@ nsHTMLContentSerializer::AppendDocumentStart(nsIDOMDocument *aDocument,
PRBool
nsHTMLContentSerializer::IsJavaScript(nsIAtom* aAttrNameAtom, const nsAString& aValueString)
{
if (aAttrNameAtom == nsHTMLAtoms::href
|| aAttrNameAtom == nsHTMLAtoms::src) {
if (aAttrNameAtom == nsHTMLAtoms::href ||
aAttrNameAtom == nsHTMLAtoms::src) {
static const char kJavaScript[] = "javascript";
PRInt32 pos = aValueString.FindChar(':');
if ( pos < (PRInt32)(sizeof kJavaScript - 1) )