diff --git a/mozilla/layout/base/nsCSSFrameConstructor.cpp b/mozilla/layout/base/nsCSSFrameConstructor.cpp index 2f0f35d451a..3f05a8d622d 100644 --- a/mozilla/layout/base/nsCSSFrameConstructor.cpp +++ b/mozilla/layout/base/nsCSSFrameConstructor.cpp @@ -5818,7 +5818,7 @@ FindFrameWithTextContent(nsIFrame* aFrame, nsIContent* aContent) // See if the frame points to the same content object kidFrame->GetContent(getter_AddRefs(kidContent)); - if (kidContent == aContent) { + if (kidContent.get() == aContent) { return kidFrame; } @@ -5853,7 +5853,7 @@ nsCSSFrameConstructor::FindPrimaryFrameFor(nsIPresContext* aPresContext, // The only content objects that we don't add a mapping to the hash table // for are text content objects, because they're anonymous - if (nsLayoutAtoms::textTagName == tag) { + if (nsLayoutAtoms::textTagName == tag.get()) { nsCOMPtr parentContent; nsCOMPtr presShell; nsIFrame* parentFrame; diff --git a/mozilla/layout/html/style/src/nsCSSFrameConstructor.cpp b/mozilla/layout/html/style/src/nsCSSFrameConstructor.cpp index 2f0f35d451a..3f05a8d622d 100644 --- a/mozilla/layout/html/style/src/nsCSSFrameConstructor.cpp +++ b/mozilla/layout/html/style/src/nsCSSFrameConstructor.cpp @@ -5818,7 +5818,7 @@ FindFrameWithTextContent(nsIFrame* aFrame, nsIContent* aContent) // See if the frame points to the same content object kidFrame->GetContent(getter_AddRefs(kidContent)); - if (kidContent == aContent) { + if (kidContent.get() == aContent) { return kidFrame; } @@ -5853,7 +5853,7 @@ nsCSSFrameConstructor::FindPrimaryFrameFor(nsIPresContext* aPresContext, // The only content objects that we don't add a mapping to the hash table // for are text content objects, because they're anonymous - if (nsLayoutAtoms::textTagName == tag) { + if (nsLayoutAtoms::textTagName == tag.get()) { nsCOMPtr parentContent; nsCOMPtr presShell; nsIFrame* parentFrame;