Do not truncate a legal attribute value when trying to ignore '/' in a short-hand-tag. b=125647, r=heikki, sr=jst, a=scc

git-svn-id: svn://10.0.0.236/trunk@116925 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
harishd%netscape.com
2002-03-20 00:25:34 +00:00
parent afdf75f460
commit 4c98adaf57
2 changed files with 2 additions and 2 deletions

View File

@@ -1469,7 +1469,7 @@ void CAttributeToken::SanitizeKey() {
// legal part
if (iter != --end) {
nsAutoString str;
CopyUnicodeTo(begin, iter, str);
CopyUnicodeTo(begin, ++iter, str);
mTextKey.Rebind(str);
}
}