mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 08:12:05 +00:00
Fixing harpoon.
This commit is contained in:
parent
e215822aef
commit
641a62a2b5
@ -1032,7 +1032,7 @@ nsXBLService::FetchBindingDocument(nsIContent* aBoundElement, nsIURI* aURI, cons
|
||||
|
||||
nsCOMPtr<nsIAtom> tagName;
|
||||
aBoundElement->GetTag(*getter_AddRefs(tagName));
|
||||
if (tagName != kScrollbarAtom) {
|
||||
if (tagName.get() != kScrollbarAtom) {
|
||||
// We can be asynchronous
|
||||
nsXBLStreamListener* xblListener = new nsXBLStreamListener(listener, boundDoc, doc);
|
||||
|
||||
|
@ -1032,7 +1032,7 @@ nsXBLService::FetchBindingDocument(nsIContent* aBoundElement, nsIURI* aURI, cons
|
||||
|
||||
nsCOMPtr<nsIAtom> tagName;
|
||||
aBoundElement->GetTag(*getter_AddRefs(tagName));
|
||||
if (tagName != kScrollbarAtom) {
|
||||
if (tagName.get() != kScrollbarAtom) {
|
||||
// We can be asynchronous
|
||||
nsXBLStreamListener* xblListener = new nsXBLStreamListener(listener, boundDoc, doc);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user