Mozilla/mozilla/content/shared/src/nsImageMapUtils.cpp
heikki%netscape.com f76611d359 Bug 51339, XHTML map elements did not work, r=harishd, sr=vidur.
git-svn-id: svn://10.0.0.236/trunk@92615 18797224-902f-48f8-a5cc-f745e15eee43
2001-04-18 00:14:34 +00:00

78 lines
2.3 KiB
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
*
*/
#include "nsString.h"
#include "nsCOMPtr.h"
#include "nsIDocument.h"
#include "nsIHTMLDocument.h"
#include "nsIDOMDocument.h"
#include "nsIDOMNode.h"
#include "nsIDOMElement.h"
#include "nsIDOMHTMLMapElement.h"
#include "nsImageMapUtils.h"
/*static*/
nsresult nsImageMapUtils::FindImageMap(nsIDocument *aDocument,
const nsAReadableString &aUsemap,
nsIDOMHTMLMapElement **aMap)
{
NS_ENSURE_ARG_POINTER(aDocument);
NS_ENSURE_ARG_POINTER(aMap);
*aMap = nsnull;
nsresult rv = NS_OK;
nsAutoString usemap(aUsemap);
// Strip out whitespace in the name for navigator compatibility
// XXX NAV QUIRK
usemap.StripWhitespace();
if (!usemap.IsEmpty() && usemap.First() == '#') {
usemap.Cut(0, 1);
}
if (usemap.IsEmpty())
return rv;
nsCOMPtr<nsIHTMLDocument> htmlDoc(do_QueryInterface(aDocument));
if (htmlDoc) {
htmlDoc->GetImageMap(usemap,aMap);
} else {
// XHTML requires that where a name attribute was used in HTML 4.01,
// the ID attribute must be used in XHTML. name is officially deprecated.
// This simplifies our life becase we can simply get the map with
// getElementById().
nsCOMPtr<nsIDOMDocument> domDoc(do_QueryInterface(aDocument));
if (domDoc) {
nsCOMPtr<nsIDOMElement> element;
domDoc->GetElementById(usemap,getter_AddRefs(element));
if (element) {
element->QueryInterface(NS_GET_IID(nsIDOMHTMLMapElement),(void**)aMap);
}
}
}
return rv;
}