Fix incorrect indentation in nsCSSScanner::NextURL. (Bug 604179, patch 4) r=bzbarsky

This commit is contained in:
L. David Baron 2011-03-11 11:29:44 -06:00
parent 7366e14023
commit 5602457863

View File

@ -944,8 +944,8 @@ nsCSSScanner::NextURL(nsCSSToken& aToken)
break;
} else if (IsWhitespace(ch)) {
// Whitespace is allowed at the end of the URL
EatWhiteSpace();
if (LookAhead(')')) {
EatWhiteSpace();
if (LookAhead(')')) {
Pushback(')'); // leave the closing symbol
// done!
break;