From 7bd6711292154bb0ac44e56afebf698b6ba4095e Mon Sep 17 00:00:00 2001 From: Gijs Kruitbosch Date: Tue, 29 Sep 2015 09:21:12 -0400 Subject: [PATCH] Bug 1207084 - addendum: fix operator== for nsCSSValueTokenStream, implied-r=heycam --HG-- extra : commitid : D5IOMZ3yab0 extra : rebase_source : 44941f108bc6953310c817ac19189cb9b275761f --- layout/style/nsCSSValue.h | 1 + 1 file changed, 1 insertion(+) diff --git a/layout/style/nsCSSValue.h b/layout/style/nsCSSValue.h index 225dd9061438..9a4eee2ba048 100644 --- a/layout/style/nsCSSValue.h +++ b/layout/style/nsCSSValue.h @@ -1493,6 +1493,7 @@ public: return mPropertyID == aOther.mPropertyID && mShorthandPropertyID == aOther.mShorthandPropertyID && mTokenStream.Equals(aOther.mTokenStream) && + mLevel == aOther.mLevel && (mBaseURI == aOther.mBaseURI || (mBaseURI && aOther.mBaseURI && NS_SUCCEEDED(mBaseURI->Equals(aOther.mBaseURI, &eq)) &&