2013-02-07 07:38:26 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#include "mozilla/dom/HTMLSourceElement.h"
|
2013-02-07 07:39:10 -08:00
|
|
|
#include "mozilla/dom/HTMLSourceElementBinding.h"
|
2013-02-07 07:38:26 -08:00
|
|
|
|
2014-05-02 14:32:20 -07:00
|
|
|
#include "mozilla/dom/HTMLImageElement.h"
|
|
|
|
#include "mozilla/dom/ResponsiveImageSelector.h"
|
|
|
|
|
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
|
2014-04-17 14:38:18 -07:00
|
|
|
#include "nsIMediaList.h"
|
|
|
|
#include "nsCSSParser.h"
|
|
|
|
|
2014-05-02 14:32:20 -07:00
|
|
|
#include "mozilla/Preferences.h"
|
|
|
|
|
2013-02-07 07:38:26 -08:00
|
|
|
NS_IMPL_NS_NEW_HTML_ELEMENT(Source)
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-06-19 19:01:40 -07:00
|
|
|
HTMLSourceElement::HTMLSourceElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
|
2013-02-07 07:38:26 -08:00
|
|
|
: nsGenericHTMLElement(aNodeInfo)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
HTMLSourceElement::~HTMLSourceElement()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-04-27 00:06:00 -07:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED(HTMLSourceElement, nsGenericHTMLElement,
|
|
|
|
nsIDOMHTMLSourceElement)
|
2013-02-07 07:38:26 -08:00
|
|
|
|
|
|
|
NS_IMPL_ELEMENT_CLONE(HTMLSourceElement)
|
|
|
|
|
|
|
|
NS_IMPL_URI_ATTR(HTMLSourceElement, Src, src)
|
|
|
|
NS_IMPL_STRING_ATTR(HTMLSourceElement, Type, type)
|
2014-04-23 13:55:05 -07:00
|
|
|
NS_IMPL_STRING_ATTR(HTMLSourceElement, Srcset, srcset)
|
|
|
|
NS_IMPL_STRING_ATTR(HTMLSourceElement, Sizes, sizes)
|
2013-02-07 07:38:26 -08:00
|
|
|
NS_IMPL_STRING_ATTR(HTMLSourceElement, Media, media)
|
|
|
|
|
2014-04-17 14:38:18 -07:00
|
|
|
bool
|
|
|
|
HTMLSourceElement::MatchesCurrentMedia()
|
|
|
|
{
|
|
|
|
if (mMediaList) {
|
|
|
|
nsIPresShell* presShell = OwnerDoc()->GetShell();
|
|
|
|
nsPresContext* pctx = presShell ? presShell->GetPresContext() : nullptr;
|
|
|
|
return pctx && mMediaList->Matches(pctx, nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
// No media specified
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
HTMLSourceElement::AfterSetAttr(int32_t aNameSpaceID, nsIAtom* aName,
|
|
|
|
const nsAttrValue* aValue, bool aNotify)
|
|
|
|
{
|
2014-05-02 14:32:20 -07:00
|
|
|
// If we are associated with a <picture> with a valid <img>, notify it of
|
|
|
|
// responsive parameter changes
|
|
|
|
nsINode *parent = nsINode::GetParentNode();
|
|
|
|
if (aNameSpaceID == kNameSpaceID_None &&
|
2014-10-01 20:30:49 -07:00
|
|
|
(aName == nsGkAtoms::srcset ||
|
|
|
|
aName == nsGkAtoms::sizes ||
|
2014-10-08 14:01:19 -07:00
|
|
|
aName == nsGkAtoms::media ||
|
|
|
|
aName == nsGkAtoms::type) &&
|
2014-10-01 20:30:49 -07:00
|
|
|
parent && parent->Tag() == nsGkAtoms::picture) {
|
2014-05-02 14:32:20 -07:00
|
|
|
nsString strVal = aValue ? aValue->GetStringValue() : EmptyString();
|
|
|
|
// Find all img siblings after this <source> and notify them of the change
|
|
|
|
nsCOMPtr<nsINode> sibling = AsContent();
|
|
|
|
while ( (sibling = sibling->GetNextSibling()) ) {
|
|
|
|
if (sibling->Tag() == nsGkAtoms::img) {
|
|
|
|
HTMLImageElement *img = static_cast<HTMLImageElement*>(sibling.get());
|
|
|
|
if (aName == nsGkAtoms::srcset) {
|
|
|
|
img->PictureSourceSrcsetChanged(AsContent(), strVal, aNotify);
|
|
|
|
} else if (aName == nsGkAtoms::sizes) {
|
|
|
|
img->PictureSourceSizesChanged(AsContent(), strVal, aNotify);
|
2014-10-08 14:01:19 -07:00
|
|
|
} else if (aName == nsGkAtoms::media ||
|
|
|
|
aName == nsGkAtoms::type) {
|
|
|
|
img->PictureSourceMediaOrTypeChanged(AsContent(), aNotify);
|
2014-05-02 14:32:20 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (aNameSpaceID == kNameSpaceID_None && aName == nsGkAtoms::media) {
|
2014-04-17 14:38:18 -07:00
|
|
|
mMediaList = nullptr;
|
|
|
|
if (aValue) {
|
|
|
|
nsString mediaStr = aValue->GetStringValue();
|
|
|
|
if (!mediaStr.IsEmpty()) {
|
|
|
|
nsCSSParser cssParser;
|
|
|
|
mMediaList = new nsMediaList();
|
|
|
|
cssParser.ParseMediaList(mediaStr, nullptr, 0, mMediaList, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nsGenericHTMLElement::AfterSetAttr(aNameSpaceID, aName,
|
|
|
|
aValue, aNotify);
|
|
|
|
}
|
|
|
|
|
2013-02-07 07:38:26 -08:00
|
|
|
void
|
|
|
|
HTMLSourceElement::GetItemValueText(nsAString& aValue)
|
|
|
|
{
|
|
|
|
GetSrc(aValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
HTMLSourceElement::SetItemValueText(const nsAString& aValue)
|
|
|
|
{
|
|
|
|
SetSrc(aValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
HTMLSourceElement::BindToTree(nsIDocument *aDocument,
|
|
|
|
nsIContent *aParent,
|
|
|
|
nsIContent *aBindingParent,
|
|
|
|
bool aCompileEventHandlers)
|
|
|
|
{
|
|
|
|
nsresult rv = nsGenericHTMLElement::BindToTree(aDocument,
|
|
|
|
aParent,
|
|
|
|
aBindingParent,
|
|
|
|
aCompileEventHandlers);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2014-05-02 14:32:20 -07:00
|
|
|
if (aParent && aParent->IsNodeOfType(nsINode::eMEDIA)) {
|
|
|
|
HTMLMediaElement* media = static_cast<HTMLMediaElement*>(aParent);
|
|
|
|
media->NotifyAddedSource();
|
|
|
|
} else if (aParent && aParent->Tag() == nsGkAtoms::picture) {
|
|
|
|
// Find any img siblings after this <source> and notify them
|
|
|
|
nsCOMPtr<nsINode> sibling = AsContent();
|
|
|
|
while ( (sibling = sibling->GetNextSibling()) ) {
|
|
|
|
if (sibling->Tag() == nsGkAtoms::img) {
|
|
|
|
HTMLImageElement *img = static_cast<HTMLImageElement*>(sibling.get());
|
|
|
|
img->PictureSourceAdded(AsContent());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-02-07 07:38:26 -08:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-02-07 07:39:10 -08:00
|
|
|
JSObject*
|
2014-04-08 15:27:17 -07:00
|
|
|
HTMLSourceElement::WrapNode(JSContext* aCx)
|
2013-02-07 07:39:10 -08:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 15:27:17 -07:00
|
|
|
return HTMLSourceElementBinding::Wrap(aCx, this);
|
2013-02-07 07:39:10 -08:00
|
|
|
}
|
|
|
|
|
2013-02-07 07:38:26 -08:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|