2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-03-17 18:42:01 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2014-04-03 08:18:36 +04:00
|
|
|
#include "mozilla/EventStates.h"
|
2017-07-29 07:35:43 +03:00
|
|
|
#include "mozilla/dom/HTMLEmbedElement.h"
|
2013-03-17 18:42:05 +04:00
|
|
|
#include "mozilla/dom/HTMLEmbedElementBinding.h"
|
2013-10-03 00:09:18 +04:00
|
|
|
#include "mozilla/dom/ElementInlines.h"
|
2013-03-17 18:42:01 +04:00
|
|
|
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIPluginDocument.h"
|
|
|
|
#include "nsIDOMDocument.h"
|
|
|
|
#include "nsThreadUtils.h"
|
|
|
|
#include "nsIScriptError.h"
|
|
|
|
#include "nsIWidget.h"
|
|
|
|
#include "nsContentUtils.h"
|
2015-02-20 19:37:02 +03:00
|
|
|
#ifdef XP_MACOSX
|
|
|
|
#include "mozilla/EventDispatcher.h"
|
|
|
|
#include "mozilla/dom/Event.h"
|
2016-04-29 00:48:14 +03:00
|
|
|
#endif
|
2016-04-29 00:57:34 +03:00
|
|
|
#include "mozilla/dom/HTMLObjectElement.h"
|
2013-03-17 18:42:01 +04:00
|
|
|
|
2016-04-11 20:58:08 +03:00
|
|
|
|
2017-07-29 07:35:43 +03:00
|
|
|
NS_IMPL_NS_NEW_HTML_ELEMENT_CHECK_PARSER(Embed)
|
2013-03-17 18:42:01 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::HTMLEmbedElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo,
|
|
|
|
FromParser aFromParser)
|
|
|
|
: nsGenericHTMLElement(aNodeInfo)
|
2013-03-17 18:42:01 +04:00
|
|
|
{
|
2014-06-19 06:09:35 +04:00
|
|
|
RegisterActivityObserver();
|
2013-03-17 18:42:01 +04:00
|
|
|
SetIsNetworkCreated(aFromParser == FROM_PARSER_NETWORK);
|
|
|
|
|
|
|
|
// By default we're in the loading state
|
|
|
|
AddStatesSilently(NS_EVENT_STATE_LOADING);
|
|
|
|
}
|
|
|
|
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::~HTMLEmbedElement()
|
2013-03-17 18:42:01 +04:00
|
|
|
{
|
2015-03-25 01:02:52 +03:00
|
|
|
#ifdef XP_MACOSX
|
|
|
|
HTMLObjectElement::OnFocusBlurPlugin(this, false);
|
|
|
|
#endif
|
2014-06-19 06:09:35 +04:00
|
|
|
UnregisterActivityObserver();
|
2013-03-17 18:42:01 +04:00
|
|
|
DestroyImageLoadingContent();
|
|
|
|
}
|
|
|
|
|
2017-07-29 07:35:43 +03:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(HTMLEmbedElement)
|
2013-03-17 18:42:01 +04:00
|
|
|
|
2017-07-29 07:35:43 +03:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(HTMLEmbedElement,
|
2013-03-17 18:42:01 +04:00
|
|
|
nsGenericHTMLElement)
|
2017-07-29 07:35:43 +03:00
|
|
|
nsObjectLoadingContent::Traverse(tmp, cb);
|
2013-03-17 18:42:01 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
2017-08-16 23:14:11 +03:00
|
|
|
NS_IMPL_ISUPPORTS_CYCLE_COLLECTION_INHERITED(HTMLEmbedElement,
|
|
|
|
nsGenericHTMLElement,
|
|
|
|
nsIRequestObserver,
|
|
|
|
nsIStreamListener,
|
|
|
|
nsIFrameLoaderOwner,
|
|
|
|
nsIObjectLoadingContent,
|
|
|
|
imgINotificationObserver,
|
|
|
|
nsIImageLoadingContent,
|
|
|
|
imgIOnloadBlocker,
|
|
|
|
nsIChannelEventSink)
|
2013-03-17 18:42:01 +04:00
|
|
|
|
2017-07-29 07:35:43 +03:00
|
|
|
NS_IMPL_ELEMENT_CLONE(HTMLEmbedElement)
|
2013-03-17 18:42:01 +04:00
|
|
|
|
2015-02-20 19:37:02 +03:00
|
|
|
#ifdef XP_MACOSX
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::PostHandleEvent(EventChainPostVisitor& aVisitor)
|
2015-02-20 19:37:02 +03:00
|
|
|
{
|
|
|
|
HTMLObjectElement::HandleFocusBlurPlugin(this, aVisitor.mEvent);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // #ifdef XP_MACOSX
|
|
|
|
|
2016-10-06 07:30:35 +03:00
|
|
|
void
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::AsyncEventRunning(AsyncEventDispatcher* aEvent)
|
2016-10-06 07:30:35 +03:00
|
|
|
{
|
|
|
|
nsImageLoadingContent::AsyncEventRunning(aEvent);
|
|
|
|
}
|
|
|
|
|
2013-03-17 18:42:01 +04:00
|
|
|
nsresult
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::BindToTree(nsIDocument *aDocument,
|
|
|
|
nsIContent *aParent,
|
|
|
|
nsIContent *aBindingParent,
|
|
|
|
bool aCompileEventHandlers)
|
2013-03-17 18:42:01 +04:00
|
|
|
{
|
|
|
|
nsresult rv = nsGenericHTMLElement::BindToTree(aDocument, aParent,
|
|
|
|
aBindingParent,
|
|
|
|
aCompileEventHandlers);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
rv = nsObjectLoadingContent::BindToTree(aDocument, aParent,
|
|
|
|
aBindingParent,
|
|
|
|
aCompileEventHandlers);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// Don't kick off load from being bound to a plugin document - the plugin
|
|
|
|
// document will call nsObjectLoadingContent::InitializeFromChannel() for the
|
|
|
|
// initial load.
|
|
|
|
nsCOMPtr<nsIPluginDocument> pluginDoc = do_QueryInterface(aDocument);
|
|
|
|
|
2017-07-29 07:35:43 +03:00
|
|
|
if (!pluginDoc) {
|
|
|
|
void (HTMLEmbedElement::*start)() = &HTMLEmbedElement::StartObjectLoad;
|
2017-06-12 22:34:10 +03:00
|
|
|
nsContentUtils::AddScriptRunner(NewRunnableMethod(
|
2017-07-29 07:35:43 +03:00
|
|
|
"dom::HTMLEmbedElement::BindToTree", this, start));
|
2013-03-17 18:42:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::UnbindFromTree(bool aDeep,
|
|
|
|
bool aNullParent)
|
2013-03-17 18:42:01 +04:00
|
|
|
{
|
2015-03-25 01:02:52 +03:00
|
|
|
#ifdef XP_MACOSX
|
|
|
|
// When a page is reloaded (when an nsIDocument's content is removed), the
|
2015-09-02 09:08:00 +03:00
|
|
|
// focused element isn't necessarily sent an eBlur event. See
|
2015-03-25 01:02:52 +03:00
|
|
|
// nsFocusManager::ContentRemoved(). This means that a widget may think it
|
|
|
|
// still contains a focused plugin when it doesn't -- which in turn can
|
|
|
|
// disable text input in the browser window. See bug 1137229.
|
|
|
|
HTMLObjectElement::OnFocusBlurPlugin(this, false);
|
|
|
|
#endif
|
2013-03-17 18:42:01 +04:00
|
|
|
nsObjectLoadingContent::UnbindFromTree(aDeep, aNullParent);
|
|
|
|
nsGenericHTMLElement::UnbindFromTree(aDeep, aNullParent);
|
|
|
|
}
|
|
|
|
|
2017-06-07 20:28:20 +03:00
|
|
|
nsresult
|
2017-10-03 01:05:19 +03:00
|
|
|
HTMLEmbedElement::AfterSetAttr(int32_t aNamespaceID, nsAtom* aName,
|
2017-07-29 07:35:43 +03:00
|
|
|
const nsAttrValue* aValue,
|
|
|
|
const nsAttrValue* aOldValue,
|
|
|
|
bool aNotify)
|
2017-06-07 20:28:20 +03:00
|
|
|
{
|
|
|
|
if (aValue) {
|
|
|
|
nsresult rv = AfterMaybeChangeAttr(aNamespaceID, aName, aNotify);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
return nsGenericHTMLElement::AfterSetAttr(aNamespaceID, aName, aValue,
|
|
|
|
aOldValue, aNotify);
|
|
|
|
}
|
2013-03-17 18:42:01 +04:00
|
|
|
|
|
|
|
nsresult
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::OnAttrSetButNotChanged(int32_t aNamespaceID,
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom* aName,
|
2017-07-29 07:35:43 +03:00
|
|
|
const nsAttrValueOrString& aValue,
|
|
|
|
bool aNotify)
|
2013-03-17 18:42:01 +04:00
|
|
|
{
|
2017-06-07 20:28:20 +03:00
|
|
|
nsresult rv = AfterMaybeChangeAttr(aNamespaceID, aName, aNotify);
|
2013-03-17 18:42:01 +04:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2017-06-07 20:28:20 +03:00
|
|
|
return nsGenericHTMLElement::OnAttrSetButNotChanged(aNamespaceID, aName,
|
|
|
|
aValue, aNotify);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::AfterMaybeChangeAttr(int32_t aNamespaceID,
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom* aName,
|
2017-07-29 07:35:43 +03:00
|
|
|
bool aNotify)
|
2017-06-07 20:28:20 +03:00
|
|
|
{
|
|
|
|
if (aNamespaceID == kNameSpaceID_None) {
|
2017-07-11 02:00:30 +03:00
|
|
|
if (aName == nsGkAtoms::src) {
|
2017-06-07 20:28:20 +03:00
|
|
|
// If aNotify is false, we are coming from the parser or some such place;
|
|
|
|
// we'll get bound after all the attributes have been set, so we'll do the
|
2017-07-29 07:35:43 +03:00
|
|
|
// object load from BindToTree.
|
2017-06-07 20:28:20 +03:00
|
|
|
// Skip the LoadObject call in that case.
|
|
|
|
// We also don't want to start loading the object when we're not yet in
|
|
|
|
// a document, just in case that the caller wants to set additional
|
|
|
|
// attributes before inserting the node into the document.
|
2017-07-29 07:35:43 +03:00
|
|
|
if (aNotify && IsInComposedDoc() &&
|
2017-06-07 20:28:20 +03:00
|
|
|
!BlockEmbedOrObjectContentLoading()) {
|
|
|
|
nsresult rv = LoadObject(aNotify, true);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
}
|
2013-03-17 18:42:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::IsHTMLFocusable(bool aWithMouse,
|
|
|
|
bool *aIsFocusable,
|
|
|
|
int32_t *aTabIndex)
|
2013-03-17 18:42:01 +04:00
|
|
|
{
|
2017-07-29 07:35:43 +03:00
|
|
|
// Has plugin content: let the plugin decide what to do in terms of
|
|
|
|
// internal focus from mouse clicks
|
|
|
|
if (aTabIndex) {
|
|
|
|
*aTabIndex = TabIndex();
|
2013-03-17 18:42:01 +04:00
|
|
|
}
|
|
|
|
|
2017-07-29 07:35:43 +03:00
|
|
|
*aIsFocusable = true;
|
|
|
|
|
|
|
|
// Let the plugin decide, so override.
|
|
|
|
return true;
|
2013-03-17 18:42:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsIContent::IMEState
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::GetDesiredIMEState()
|
2013-03-17 18:42:01 +04:00
|
|
|
{
|
|
|
|
if (Type() == eType_Plugin) {
|
|
|
|
return IMEState(IMEState::PLUGIN);
|
|
|
|
}
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2013-03-17 18:42:01 +04:00
|
|
|
return nsGenericHTMLElement::GetDesiredIMEState();
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::TabIndexDefault()
|
2013-03-17 18:42:01 +04:00
|
|
|
{
|
2013-06-12 08:56:26 +04:00
|
|
|
return -1;
|
2013-03-17 18:42:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::ParseAttribute(int32_t aNamespaceID,
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom *aAttribute,
|
2017-07-29 07:35:43 +03:00
|
|
|
const nsAString &aValue,
|
|
|
|
nsAttrValue &aResult)
|
2013-03-17 18:42:01 +04:00
|
|
|
{
|
|
|
|
if (aNamespaceID == kNameSpaceID_None) {
|
|
|
|
if (aAttribute == nsGkAtoms::align) {
|
|
|
|
return ParseAlignValue(aValue, aResult);
|
|
|
|
}
|
|
|
|
if (ParseImageAttribute(aAttribute, aValue, aResult)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nsGenericHTMLElement::ParseAttribute(aNamespaceID, aAttribute, aValue,
|
|
|
|
aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-07-11 18:39:18 +04:00
|
|
|
MapAttributesIntoRuleBase(const nsMappedAttributes *aAttributes,
|
2017-01-27 03:51:01 +03:00
|
|
|
GenericSpecifiedValues* aData)
|
2013-03-17 18:42:01 +04:00
|
|
|
{
|
2017-01-27 03:51:01 +03:00
|
|
|
nsGenericHTMLElement::MapImageBorderAttributeInto(aAttributes, aData);
|
|
|
|
nsGenericHTMLElement::MapImageMarginAttributeInto(aAttributes, aData);
|
|
|
|
nsGenericHTMLElement::MapImageSizeAttributesInto(aAttributes, aData);
|
|
|
|
nsGenericHTMLElement::MapImageAlignAttributeInto(aAttributes, aData);
|
2013-07-11 18:39:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
MapAttributesIntoRuleExceptHidden(const nsMappedAttributes *aAttributes,
|
2017-01-27 03:51:01 +03:00
|
|
|
GenericSpecifiedValues* aData)
|
2013-07-11 18:39:18 +04:00
|
|
|
{
|
2017-01-27 03:51:01 +03:00
|
|
|
MapAttributesIntoRuleBase(aAttributes, aData);
|
|
|
|
nsGenericHTMLElement::MapCommonAttributesIntoExceptHidden(aAttributes, aData);
|
2013-07-11 18:39:18 +04:00
|
|
|
}
|
|
|
|
|
2013-11-19 23:21:29 +04:00
|
|
|
void
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::MapAttributesIntoRule(const nsMappedAttributes *aAttributes,
|
|
|
|
GenericSpecifiedValues* aData)
|
2013-07-11 18:39:18 +04:00
|
|
|
{
|
2017-01-27 03:51:01 +03:00
|
|
|
MapAttributesIntoRuleBase(aAttributes, aData);
|
|
|
|
nsGenericHTMLElement::MapCommonAttributesInto(aAttributes, aData);
|
2013-03-17 18:42:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(bool)
|
2017-10-03 01:05:19 +03:00
|
|
|
HTMLEmbedElement::IsAttributeMapped(const nsAtom *aAttribute) const
|
2013-03-17 18:42:01 +04:00
|
|
|
{
|
|
|
|
static const MappedAttributeEntry* const map[] = {
|
|
|
|
sCommonAttributeMap,
|
|
|
|
sImageMarginSizeAttributeMap,
|
|
|
|
sImageBorderAttributeMap,
|
|
|
|
sImageAlignAttributeMap,
|
|
|
|
};
|
|
|
|
|
|
|
|
return FindAttributeDependence(aAttribute, map);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsMapRuleToAttributesFunc
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::GetAttributeMappingFunction() const
|
2013-03-17 18:42:01 +04:00
|
|
|
{
|
2017-07-29 07:35:43 +03:00
|
|
|
return &MapAttributesIntoRuleExceptHidden;
|
2013-03-17 18:42:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::StartObjectLoad(bool aNotify, bool aForceLoad)
|
2013-03-17 18:42:01 +04:00
|
|
|
{
|
|
|
|
// BindToTree can call us asynchronously, and we may be removed from the tree
|
|
|
|
// in the interim
|
2016-04-11 20:58:08 +03:00
|
|
|
if (!IsInComposedDoc() || !OwnerDoc()->IsActive() ||
|
2017-02-09 02:19:01 +03:00
|
|
|
BlockEmbedOrObjectContentLoading()) {
|
2013-03-17 18:42:01 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-04-29 00:57:34 +03:00
|
|
|
LoadObject(aNotify, aForceLoad);
|
2013-03-17 18:42:01 +04:00
|
|
|
SetIsNetworkCreated(false);
|
|
|
|
}
|
|
|
|
|
2014-04-03 08:18:36 +04:00
|
|
|
EventStates
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::IntrinsicState() const
|
2013-03-17 18:42:01 +04:00
|
|
|
{
|
|
|
|
return nsGenericHTMLElement::IntrinsicState() | ObjectState();
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::GetCapabilities() const
|
2013-03-17 18:42:01 +04:00
|
|
|
{
|
2017-07-29 07:35:43 +03:00
|
|
|
return eSupportPlugins | eAllowPluginSkipChannel | eSupportImages | eSupportDocuments;
|
2013-03-17 18:42:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::DestroyContent()
|
2013-03-17 18:42:01 +04:00
|
|
|
{
|
|
|
|
nsObjectLoadingContent::DestroyContent();
|
|
|
|
nsGenericHTMLElement::DestroyContent();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::CopyInnerTo(Element* aDest, bool aPreallocateChildren)
|
2013-03-17 18:42:01 +04:00
|
|
|
{
|
2017-04-20 22:57:48 +03:00
|
|
|
nsresult rv = nsGenericHTMLElement::CopyInnerTo(aDest, aPreallocateChildren);
|
2013-03-17 18:42:01 +04:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (aDest->OwnerDoc()->IsStaticDocument()) {
|
2017-07-29 07:35:43 +03:00
|
|
|
CreateStaticClone(static_cast<HTMLEmbedElement*>(aDest));
|
2013-03-17 18:42:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2013-03-17 18:42:05 +04:00
|
|
|
JSObject*
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
2013-03-17 18:42:05 +04:00
|
|
|
{
|
|
|
|
JSObject* obj;
|
2017-07-11 02:00:30 +03:00
|
|
|
obj = HTMLEmbedElementBinding::Wrap(aCx, this, aGivenProto);
|
|
|
|
|
2013-03-17 18:42:05 +04:00
|
|
|
if (!obj) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2013-05-02 13:12:45 +04:00
|
|
|
JS::Rooted<JSObject*> rootedObj(aCx, obj);
|
|
|
|
SetupProtoChain(aCx, rootedObj);
|
|
|
|
return rootedObj;
|
2013-03-17 18:42:05 +04:00
|
|
|
}
|
|
|
|
|
2015-07-18 18:51:00 +03:00
|
|
|
nsContentPolicyType
|
2017-07-29 07:35:43 +03:00
|
|
|
HTMLEmbedElement::GetContentPolicyType() const
|
2015-07-18 18:51:00 +03:00
|
|
|
{
|
2017-07-29 02:44:39 +03:00
|
|
|
return nsIContentPolicy::TYPE_INTERNAL_EMBED;
|
2015-07-18 18:51:00 +03:00
|
|
|
}
|
|
|
|
|
2013-03-17 18:42:01 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|