2008-07-09 08:22:20 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
2012-05-21 11:12:37 +00: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/. */
|
2008-07-09 08:22:20 +00:00
|
|
|
|
|
|
|
/* rendering object for the HTML <video> element */
|
|
|
|
|
2013-09-25 01:43:43 +00:00
|
|
|
#include "nsVideoFrame.h"
|
|
|
|
|
2008-07-09 08:22:20 +00:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
|
2013-03-19 12:27:35 +00:00
|
|
|
#include "mozilla/dom/HTMLVideoElement.h"
|
2012-05-11 08:32:29 +00:00
|
|
|
#include "nsIDOMHTMLImageElement.h"
|
2008-07-09 08:22:20 +00:00
|
|
|
#include "nsDisplayList.h"
|
2013-05-28 20:55:00 +00:00
|
|
|
#include "nsGenericHTMLElement.h"
|
2008-07-09 08:22:20 +00:00
|
|
|
#include "nsPresContext.h"
|
|
|
|
#include "nsContentCreatorFunctions.h"
|
|
|
|
#include "nsBoxLayoutState.h"
|
|
|
|
#include "nsBoxFrame.h"
|
2009-06-26 07:25:17 +00:00
|
|
|
#include "nsImageFrame.h"
|
|
|
|
#include "nsIImageLoadingContent.h"
|
2011-08-11 13:29:50 +00:00
|
|
|
#include "nsContentUtils.h"
|
2012-08-19 19:33:25 +00:00
|
|
|
#include "ImageContainer.h"
|
|
|
|
#include "ImageLayers.h"
|
2012-09-05 20:49:53 +00:00
|
|
|
#include "nsContentList.h"
|
2014-11-15 00:45:23 +00:00
|
|
|
#include "nsStyleUtil.h"
|
2013-01-15 12:22:03 +00:00
|
|
|
#include <algorithm>
|
2008-07-09 08:22:20 +00:00
|
|
|
|
2010-08-02 03:06:58 +00:00
|
|
|
using namespace mozilla;
|
2010-03-01 23:41:49 +00:00
|
|
|
using namespace mozilla::layers;
|
2011-06-01 01:46:57 +00:00
|
|
|
using namespace mozilla::dom;
|
2013-12-31 09:06:12 +00:00
|
|
|
using namespace mozilla::gfx;
|
2010-03-01 23:41:49 +00:00
|
|
|
|
2008-07-09 08:22:20 +00:00
|
|
|
nsIFrame*
|
|
|
|
NS_NewHTMLVideoFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
|
|
|
{
|
|
|
|
return new (aPresShell) nsVideoFrame(aContext);
|
|
|
|
}
|
|
|
|
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsVideoFrame)
|
|
|
|
|
2008-07-09 08:22:20 +00:00
|
|
|
nsVideoFrame::nsVideoFrame(nsStyleContext* aContext) :
|
|
|
|
nsContainerFrame(aContext)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsVideoFrame::~nsVideoFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-01-12 19:20:59 +00:00
|
|
|
NS_QUERYFRAME_HEAD(nsVideoFrame)
|
2013-05-27 20:34:00 +00:00
|
|
|
NS_QUERYFRAME_ENTRY(nsVideoFrame)
|
2009-01-12 19:20:59 +00:00
|
|
|
NS_QUERYFRAME_ENTRY(nsIAnonymousContentCreator)
|
|
|
|
NS_QUERYFRAME_TAIL_INHERITING(nsContainerFrame)
|
2008-07-09 08:22:20 +00:00
|
|
|
|
|
|
|
nsresult
|
2011-05-06 20:04:44 +00:00
|
|
|
nsVideoFrame::CreateAnonymousContent(nsTArray<ContentInfo>& aElements)
|
2008-07-09 08:22:20 +00:00
|
|
|
{
|
2014-09-24 22:52:12 +00:00
|
|
|
nsNodeInfoManager *nodeInfoManager = GetContent()->GetComposedDoc()->NodeInfoManager();
|
2014-06-20 02:01:40 +00:00
|
|
|
nsRefPtr<NodeInfo> nodeInfo;
|
2013-02-26 21:06:51 +00:00
|
|
|
Element *element;
|
|
|
|
|
2009-06-26 07:25:17 +00:00
|
|
|
if (HasVideoElement()) {
|
|
|
|
// Create an anonymous image element as a child to hold the poster
|
|
|
|
// image. We may not have a poster image now, but one could be added
|
|
|
|
// before we load, or on a subsequent load.
|
|
|
|
nodeInfo = nodeInfoManager->GetNodeInfo(nsGkAtoms::img,
|
2012-07-30 14:20:58 +00:00
|
|
|
nullptr,
|
2011-06-14 07:56:49 +00:00
|
|
|
kNameSpaceID_XHTML,
|
|
|
|
nsIDOMNode::ELEMENT_NODE);
|
2009-06-26 07:25:17 +00:00
|
|
|
NS_ENSURE_TRUE(nodeInfo, NS_ERROR_OUT_OF_MEMORY);
|
2013-02-26 21:06:51 +00:00
|
|
|
element = NS_NewHTMLImageElement(nodeInfo.forget());
|
2011-06-01 01:46:57 +00:00
|
|
|
mPosterImage = element;
|
2009-06-26 07:25:17 +00:00
|
|
|
NS_ENSURE_TRUE(mPosterImage, NS_ERROR_OUT_OF_MEMORY);
|
2009-11-05 13:56:52 +00:00
|
|
|
|
2009-06-26 07:25:17 +00:00
|
|
|
// Set the nsImageLoadingContent::ImageState() to 0. This means that the
|
|
|
|
// image will always report its state as 0, so it will never be reframed
|
|
|
|
// to show frames for loading or the broken image icon. This is important,
|
|
|
|
// as the image is native anonymous, and so can't be reframed (currently).
|
|
|
|
nsCOMPtr<nsIImageLoadingContent> imgContent = do_QueryInterface(mPosterImage);
|
|
|
|
NS_ENSURE_TRUE(imgContent, NS_ERROR_FAILURE);
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
imgContent->ForceImageState(true, 0);
|
2011-06-01 01:46:57 +00:00
|
|
|
// And now have it update its internal state
|
|
|
|
element->UpdateState(false);
|
2009-06-26 07:25:17 +00:00
|
|
|
|
2013-12-04 01:06:16 +00:00
|
|
|
UpdatePosterSource(false);
|
2009-11-05 13:56:52 +00:00
|
|
|
|
2009-06-26 07:25:17 +00:00
|
|
|
if (!aElements.AppendElement(mPosterImage))
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2013-02-26 21:06:51 +00:00
|
|
|
|
|
|
|
// Set up the caption overlay div for showing any TextTrack data
|
|
|
|
nodeInfo = nodeInfoManager->GetNodeInfo(nsGkAtoms::div,
|
|
|
|
nullptr,
|
|
|
|
kNameSpaceID_XHTML,
|
|
|
|
nsIDOMNode::ELEMENT_NODE);
|
|
|
|
NS_ENSURE_TRUE(nodeInfo, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
mCaptionDiv = NS_NewHTMLDivElement(nodeInfo.forget());
|
|
|
|
NS_ENSURE_TRUE(mCaptionDiv, NS_ERROR_OUT_OF_MEMORY);
|
2013-05-28 20:55:00 +00:00
|
|
|
nsGenericHTMLElement* div = static_cast<nsGenericHTMLElement*>(mCaptionDiv.get());
|
|
|
|
div->SetClassName(NS_LITERAL_STRING("caption-box"));
|
2013-02-26 21:06:51 +00:00
|
|
|
|
|
|
|
if (!aElements.AppendElement(mCaptionDiv))
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2009-11-05 13:56:52 +00:00
|
|
|
}
|
2009-06-26 07:25:17 +00:00
|
|
|
|
2008-07-09 08:22:20 +00:00
|
|
|
// Set up "videocontrols" XUL element which will be XBL-bound to the
|
|
|
|
// actual controls.
|
2009-06-26 07:25:17 +00:00
|
|
|
nodeInfo = nodeInfoManager->GetNodeInfo(nsGkAtoms::videocontrols,
|
2012-07-30 14:20:58 +00:00
|
|
|
nullptr,
|
2011-06-14 07:56:49 +00:00
|
|
|
kNameSpaceID_XUL,
|
|
|
|
nsIDOMNode::ELEMENT_NODE);
|
2008-09-25 22:46:52 +00:00
|
|
|
NS_ENSURE_TRUE(nodeInfo, NS_ERROR_OUT_OF_MEMORY);
|
2008-07-09 08:22:20 +00:00
|
|
|
|
2010-08-19 23:12:46 +00:00
|
|
|
NS_TrustedNewXULElement(getter_AddRefs(mVideoControls), nodeInfo.forget());
|
2008-07-09 08:22:20 +00:00
|
|
|
if (!aElements.AppendElement(mVideoControls))
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2009-06-26 07:25:17 +00:00
|
|
|
|
2008-07-09 08:22:20 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-02-11 17:34:01 +00:00
|
|
|
void
|
2014-07-16 18:41:57 +00:00
|
|
|
nsVideoFrame::AppendAnonymousContentTo(nsTArray<nsIContent*>& aElements,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aFliter)
|
2010-02-11 17:34:01 +00:00
|
|
|
{
|
2014-07-16 18:41:57 +00:00
|
|
|
if (mPosterImage) {
|
|
|
|
aElements.AppendElement(mPosterImage);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mVideoControls) {
|
|
|
|
aElements.AppendElement(mVideoControls);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mCaptionDiv) {
|
|
|
|
aElements.AppendElement(mCaptionDiv);
|
|
|
|
}
|
2010-02-11 17:34:01 +00:00
|
|
|
}
|
|
|
|
|
2008-07-09 08:22:20 +00:00
|
|
|
void
|
2009-12-24 05:21:15 +00:00
|
|
|
nsVideoFrame::DestroyFrom(nsIFrame* aDestructRoot)
|
2008-07-09 08:22:20 +00:00
|
|
|
{
|
2013-02-26 21:06:51 +00:00
|
|
|
nsContentUtils::DestroyAnonymousContent(&mCaptionDiv);
|
2008-07-09 08:22:20 +00:00
|
|
|
nsContentUtils::DestroyAnonymousContent(&mVideoControls);
|
2009-06-26 07:25:17 +00:00
|
|
|
nsContentUtils::DestroyAnonymousContent(&mPosterImage);
|
2009-12-24 05:21:15 +00:00
|
|
|
nsContainerFrame::DestroyFrom(aDestructRoot);
|
2008-07-09 08:22:20 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2008-07-09 08:22:20 +00:00
|
|
|
nsVideoFrame::IsLeaf() const
|
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2008-07-09 08:22:20 +00:00
|
|
|
}
|
|
|
|
|
2010-03-01 23:41:49 +00:00
|
|
|
already_AddRefed<Layer>
|
|
|
|
nsVideoFrame::BuildLayer(nsDisplayListBuilder* aBuilder,
|
2010-07-15 21:07:46 +00:00
|
|
|
LayerManager* aManager,
|
2012-09-16 22:25:33 +00:00
|
|
|
nsDisplayItem* aItem,
|
2013-09-27 06:01:16 +00:00
|
|
|
const ContainerLayerParameters& aContainerParameters)
|
2008-07-09 08:22:20 +00:00
|
|
|
{
|
2014-11-25 23:40:02 +00:00
|
|
|
nsRect area = GetContentRectRelativeToSelf() + aItem->ToReferenceFrame();
|
2013-03-19 12:27:35 +00:00
|
|
|
HTMLVideoElement* element = static_cast<HTMLVideoElement*>(GetContent());
|
2014-11-15 00:45:24 +00:00
|
|
|
|
|
|
|
nsIntSize videoSizeInPx;
|
|
|
|
if (NS_FAILED(element->GetVideoSize(&videoSizeInPx)) ||
|
2014-11-25 23:40:02 +00:00
|
|
|
area.IsEmpty()) {
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2012-05-11 08:32:15 +00:00
|
|
|
}
|
2010-03-01 23:41:49 +00:00
|
|
|
|
|
|
|
nsRefPtr<ImageContainer> container = element->GetImageContainer();
|
2012-04-09 19:17:19 +00:00
|
|
|
if (!container)
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2012-02-01 02:18:30 +00:00
|
|
|
|
2010-04-27 08:53:44 +00:00
|
|
|
// Retrieve the size of the decoded video frame, before being scaled
|
|
|
|
// by pixel aspect ratio.
|
2013-12-13 17:32:02 +00:00
|
|
|
mozilla::gfx::IntSize frameSize = container->GetCurrentSize();
|
2010-04-27 08:53:44 +00:00
|
|
|
if (frameSize.width == 0 || frameSize.height == 0) {
|
|
|
|
// No image, or zero-sized image. No point creating a layer.
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2010-04-27 08:53:44 +00:00
|
|
|
}
|
|
|
|
|
2014-11-15 00:45:24 +00:00
|
|
|
// Convert video size from pixel units into app units, to get an aspect-ratio
|
|
|
|
// (which has to be represented as a nsSize) and an IntrinsicSize that we
|
|
|
|
// can pass to ComputeObjectRenderRect.
|
|
|
|
nsSize aspectRatio(nsPresContext::CSSPixelsToAppUnits(videoSizeInPx.width),
|
|
|
|
nsPresContext::CSSPixelsToAppUnits(videoSizeInPx.height));
|
|
|
|
IntrinsicSize intrinsicSize;
|
|
|
|
intrinsicSize.width.SetCoordValue(aspectRatio.width);
|
|
|
|
intrinsicSize.height.SetCoordValue(aspectRatio.height);
|
|
|
|
|
2014-11-25 23:40:02 +00:00
|
|
|
nsRect dest = nsLayoutUtils::ComputeObjectDestRect(area,
|
2014-11-15 00:45:24 +00:00
|
|
|
intrinsicSize,
|
|
|
|
aspectRatio,
|
|
|
|
StylePosition());
|
|
|
|
|
|
|
|
gfxRect destGFXRect = PresContext()->AppUnitsToGfxUnits(dest);
|
|
|
|
destGFXRect.Round();
|
|
|
|
if (destGFXRect.IsEmpty()) {
|
2012-11-29 22:11:04 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
2014-11-15 00:45:24 +00:00
|
|
|
IntSize scaleHint(static_cast<int32_t>(destGFXRect.Width()),
|
|
|
|
static_cast<int32_t>(destGFXRect.Height()));
|
2010-10-26 03:11:13 +00:00
|
|
|
container->SetScaleHint(scaleHint);
|
2010-03-01 23:41:49 +00:00
|
|
|
|
2010-07-15 21:07:46 +00:00
|
|
|
nsRefPtr<ImageLayer> layer = static_cast<ImageLayer*>
|
2012-08-29 05:47:15 +00:00
|
|
|
(aManager->GetLayerBuilder()->GetLeafLayerFor(aBuilder, aItem));
|
2010-07-15 21:07:46 +00:00
|
|
|
if (!layer) {
|
|
|
|
layer = aManager->CreateImageLayer();
|
|
|
|
if (!layer)
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2010-07-15 21:07:46 +00:00
|
|
|
}
|
2010-03-01 23:41:49 +00:00
|
|
|
|
|
|
|
layer->SetContainer(container);
|
|
|
|
layer->SetFilter(nsLayoutUtils::GetGraphicsFilterForFrame(this));
|
|
|
|
// Set a transform on the layer to draw the video in the right place
|
2014-11-15 00:45:24 +00:00
|
|
|
gfxPoint p = destGFXRect.TopLeft() + aContainerParameters.mOffset;
|
2014-09-10 13:26:12 +00:00
|
|
|
Matrix transform = Matrix::Translation(p.x, p.y);
|
2014-01-27 15:28:33 +00:00
|
|
|
layer->SetBaseTransform(gfx::Matrix4x4::From2D(transform));
|
2014-11-15 00:45:24 +00:00
|
|
|
layer->SetScaleToSize(scaleHint, ScaleMode::STRETCH);
|
2010-03-01 23:41:49 +00:00
|
|
|
nsRefPtr<Layer> result = layer.forget();
|
|
|
|
return result.forget();
|
2008-07-09 08:22:20 +00:00
|
|
|
}
|
|
|
|
|
2013-05-28 05:00:59 +00:00
|
|
|
class DispatchResizeToControls : public nsRunnable
|
|
|
|
{
|
|
|
|
public:
|
2014-09-01 03:36:37 +00:00
|
|
|
explicit DispatchResizeToControls(nsIContent* aContent)
|
2013-05-28 05:00:59 +00:00
|
|
|
: mContent(aContent) {}
|
2015-03-21 16:28:04 +00:00
|
|
|
NS_IMETHOD Run() override {
|
2013-05-28 05:00:59 +00:00
|
|
|
nsContentUtils::DispatchTrustedEvent(mContent->OwnerDoc(), mContent,
|
|
|
|
NS_LITERAL_STRING("resizevideocontrols"),
|
|
|
|
false, false);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
nsCOMPtr<nsIContent> mContent;
|
|
|
|
};
|
|
|
|
|
2014-05-13 00:47:52 +00:00
|
|
|
void
|
2008-07-09 08:22:20 +00:00
|
|
|
nsVideoFrame::Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aMetrics,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus)
|
|
|
|
{
|
2015-03-29 22:38:40 +00:00
|
|
|
MarkInReflow();
|
2008-07-09 08:22:20 +00:00
|
|
|
DO_GLOBAL_REFLOW_COUNT("nsVideoFrame");
|
|
|
|
DISPLAY_REFLOW(aPresContext, this, aReflowState, aMetrics, aStatus);
|
|
|
|
NS_FRAME_TRACE(NS_FRAME_TRACE_CALLS,
|
|
|
|
("enter nsVideoFrame::Reflow: availSize=%d,%d",
|
2013-12-27 17:59:21 +00:00
|
|
|
aReflowState.AvailableWidth(), aReflowState.AvailableHeight()));
|
2008-07-09 08:22:20 +00:00
|
|
|
|
|
|
|
NS_PRECONDITION(mState & NS_FRAME_IN_REFLOW, "frame is not in reflow");
|
|
|
|
|
|
|
|
aStatus = NS_FRAME_COMPLETE;
|
|
|
|
|
2013-12-27 17:59:52 +00:00
|
|
|
aMetrics.Width() = aReflowState.ComputedWidth();
|
|
|
|
aMetrics.Height() = aReflowState.ComputedHeight();
|
2008-07-09 08:22:20 +00:00
|
|
|
|
|
|
|
// stash this away so we can compute our inner area later
|
2013-12-27 17:59:21 +00:00
|
|
|
mBorderPadding = aReflowState.ComputedPhysicalBorderPadding();
|
2008-07-09 08:22:20 +00:00
|
|
|
|
2013-12-27 17:59:52 +00:00
|
|
|
aMetrics.Width() += mBorderPadding.left + mBorderPadding.right;
|
|
|
|
aMetrics.Height() += mBorderPadding.top + mBorderPadding.bottom;
|
2008-07-09 08:22:20 +00:00
|
|
|
|
2009-06-26 07:25:17 +00:00
|
|
|
// Reflow the child frames. We may have up to two, an image frame
|
|
|
|
// which is the poster, and a box frame, which is the video controls.
|
2015-06-29 20:02:21 +00:00
|
|
|
for (nsIFrame* child : mFrames) {
|
2013-02-26 21:06:51 +00:00
|
|
|
if (child->GetContent() == mPosterImage) {
|
2009-06-26 07:25:17 +00:00
|
|
|
// Reflow the poster frame.
|
|
|
|
nsImageFrame* imageFrame = static_cast<nsImageFrame*>(child);
|
2013-12-31 13:50:31 +00:00
|
|
|
nsHTMLReflowMetrics kidDesiredSize(aReflowState);
|
2014-07-24 08:28:46 +00:00
|
|
|
WritingMode wm = imageFrame->GetWritingMode();
|
|
|
|
LogicalSize availableSize = aReflowState.AvailableSize(wm);
|
2015-06-04 10:43:02 +00:00
|
|
|
LogicalSize cbSize = aMetrics.Size(aMetrics.GetWritingMode()).
|
|
|
|
ConvertTo(wm, aMetrics.GetWritingMode());
|
2009-10-06 07:37:46 +00:00
|
|
|
nsHTMLReflowState kidReflowState(aPresContext,
|
|
|
|
aReflowState,
|
|
|
|
imageFrame,
|
|
|
|
availableSize,
|
2015-06-04 10:43:02 +00:00
|
|
|
&cbSize);
|
2012-05-11 08:32:29 +00:00
|
|
|
|
2014-11-15 00:45:24 +00:00
|
|
|
nsRect posterRenderRect;
|
|
|
|
if (ShouldDisplayPoster()) {
|
|
|
|
posterRenderRect =
|
|
|
|
nsRect(nsPoint(mBorderPadding.left, mBorderPadding.top),
|
|
|
|
nsSize(aReflowState.ComputedWidth(),
|
|
|
|
aReflowState.ComputedHeight()));
|
2009-10-06 07:37:46 +00:00
|
|
|
}
|
2014-11-15 00:45:24 +00:00
|
|
|
kidReflowState.SetComputedWidth(posterRenderRect.width);
|
|
|
|
kidReflowState.SetComputedHeight(posterRenderRect.height);
|
2009-10-06 07:37:46 +00:00
|
|
|
ReflowChild(imageFrame, aPresContext, kidDesiredSize, kidReflowState,
|
2014-11-15 00:45:24 +00:00
|
|
|
posterRenderRect.x, posterRenderRect.y, 0, aStatus);
|
|
|
|
FinishReflowChild(imageFrame, aPresContext,
|
|
|
|
kidDesiredSize, &kidReflowState,
|
|
|
|
posterRenderRect.x, posterRenderRect.y, 0);
|
2013-02-26 21:06:51 +00:00
|
|
|
} else if (child->GetContent() == mVideoControls) {
|
2009-06-26 07:25:17 +00:00
|
|
|
// Reflow the video controls frame.
|
|
|
|
nsBoxLayoutState boxState(PresContext(), aReflowState.rendContext);
|
2013-05-28 05:00:59 +00:00
|
|
|
nsSize size = child->GetSize();
|
2009-06-26 07:25:17 +00:00
|
|
|
nsBoxFrame::LayoutChildAt(boxState,
|
|
|
|
child,
|
|
|
|
nsRect(mBorderPadding.left,
|
|
|
|
mBorderPadding.top,
|
|
|
|
aReflowState.ComputedWidth(),
|
|
|
|
aReflowState.ComputedHeight()));
|
2013-05-28 05:00:59 +00:00
|
|
|
if (child->GetSize() != size) {
|
|
|
|
nsRefPtr<nsRunnable> event = new DispatchResizeToControls(child->GetContent());
|
|
|
|
nsContentUtils::AddScriptRunner(event);
|
|
|
|
}
|
2013-02-26 21:06:51 +00:00
|
|
|
} else if (child->GetContent() == mCaptionDiv) {
|
|
|
|
// Reflow to caption div
|
2013-12-31 13:50:31 +00:00
|
|
|
nsHTMLReflowMetrics kidDesiredSize(aReflowState);
|
2014-07-24 08:28:46 +00:00
|
|
|
WritingMode wm = child->GetWritingMode();
|
|
|
|
LogicalSize availableSize = aReflowState.AvailableSize(wm);
|
2015-06-04 10:43:02 +00:00
|
|
|
LogicalSize cbSize = aMetrics.Size(aMetrics.GetWritingMode()).
|
|
|
|
ConvertTo(wm, aMetrics.GetWritingMode());
|
2013-02-26 21:06:51 +00:00
|
|
|
nsHTMLReflowState kidReflowState(aPresContext,
|
|
|
|
aReflowState,
|
|
|
|
child,
|
|
|
|
availableSize,
|
2015-06-04 10:43:02 +00:00
|
|
|
&cbSize);
|
2013-02-26 21:06:51 +00:00
|
|
|
nsSize size(aReflowState.ComputedWidth(), aReflowState.ComputedHeight());
|
2013-12-27 17:59:21 +00:00
|
|
|
size.width -= kidReflowState.ComputedPhysicalBorderPadding().LeftRight();
|
|
|
|
size.height -= kidReflowState.ComputedPhysicalBorderPadding().TopBottom();
|
2013-02-26 21:06:51 +00:00
|
|
|
|
|
|
|
kidReflowState.SetComputedWidth(std::max(size.width, 0));
|
|
|
|
kidReflowState.SetComputedHeight(std::max(size.height, 0));
|
|
|
|
|
|
|
|
ReflowChild(child, aPresContext, kidDesiredSize, kidReflowState,
|
|
|
|
mBorderPadding.left, mBorderPadding.top, 0, aStatus);
|
|
|
|
FinishReflowChild(child, aPresContext,
|
2014-01-17 01:34:44 +00:00
|
|
|
kidDesiredSize, &kidReflowState,
|
2013-02-26 21:06:51 +00:00
|
|
|
mBorderPadding.left, mBorderPadding.top, 0);
|
2009-06-26 07:25:17 +00:00
|
|
|
}
|
2008-07-09 08:22:20 +00:00
|
|
|
}
|
2010-10-07 04:25:46 +00:00
|
|
|
aMetrics.SetOverflowAreasToDesiredBounds();
|
2008-07-09 08:22:20 +00:00
|
|
|
|
|
|
|
FinishAndStoreOverflow(&aMetrics);
|
|
|
|
|
|
|
|
NS_FRAME_TRACE(NS_FRAME_TRACE_CALLS,
|
|
|
|
("exit nsVideoFrame::Reflow: size=%d,%d",
|
2013-12-27 17:59:52 +00:00
|
|
|
aMetrics.Width(), aMetrics.Height()));
|
2008-07-09 08:22:20 +00:00
|
|
|
NS_FRAME_SET_TRUNCATION(aStatus, aReflowState, aMetrics);
|
|
|
|
}
|
|
|
|
|
2010-03-01 23:41:49 +00:00
|
|
|
class nsDisplayVideo : public nsDisplayItem {
|
|
|
|
public:
|
2010-08-13 10:01:13 +00:00
|
|
|
nsDisplayVideo(nsDisplayListBuilder* aBuilder, nsVideoFrame* aFrame)
|
|
|
|
: nsDisplayItem(aBuilder, aFrame)
|
2010-03-01 23:41:49 +00:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsDisplayVideo);
|
|
|
|
}
|
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
|
|
|
virtual ~nsDisplayVideo() {
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayVideo);
|
|
|
|
}
|
2008-07-09 08:22:20 +00:00
|
|
|
#endif
|
2010-03-01 23:41:49 +00:00
|
|
|
|
2010-07-15 21:07:49 +00:00
|
|
|
NS_DISPLAY_DECL_NAME("Video", TYPE_VIDEO)
|
2010-03-01 23:41:49 +00:00
|
|
|
|
2011-01-03 01:48:09 +00:00
|
|
|
// It would be great if we could override GetOpaqueRegion to return nonempty here,
|
2010-03-01 23:41:49 +00:00
|
|
|
// but it's probably not safe to do so in general. Video frames are
|
|
|
|
// updated asynchronously from decoder threads, and it's possible that
|
2011-01-03 01:48:09 +00:00
|
|
|
// we might have an opaque video frame when GetOpaqueRegion is called, but
|
2010-03-01 23:41:49 +00:00
|
|
|
// when we come to paint, the video frame is transparent or has gone
|
|
|
|
// away completely (e.g. because of a decoder error). The problem would
|
|
|
|
// be especially acute if we have off-main-thread rendering.
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsRect GetBounds(nsDisplayListBuilder* aBuilder, bool* aSnap) override
|
2010-03-01 23:41:49 +00:00
|
|
|
{
|
2012-11-13 19:56:47 +00:00
|
|
|
*aSnap = true;
|
2013-04-19 12:02:13 +00:00
|
|
|
nsIFrame* f = Frame();
|
2014-09-11 21:29:59 +00:00
|
|
|
return f->GetContentRectRelativeToSelf() + ToReferenceFrame();
|
2010-03-01 23:41:49 +00:00
|
|
|
}
|
2008-07-09 08:22:20 +00:00
|
|
|
|
2010-03-01 23:41:49 +00:00
|
|
|
virtual already_AddRefed<Layer> BuildLayer(nsDisplayListBuilder* aBuilder,
|
2011-06-22 12:11:27 +00:00
|
|
|
LayerManager* aManager,
|
2015-03-21 16:28:04 +00:00
|
|
|
const ContainerLayerParameters& aContainerParameters) override
|
2010-03-01 23:41:49 +00:00
|
|
|
{
|
2012-09-16 22:25:33 +00:00
|
|
|
return static_cast<nsVideoFrame*>(mFrame)->BuildLayer(aBuilder, aManager, this, aContainerParameters);
|
2010-03-01 23:41:49 +00:00
|
|
|
}
|
2010-07-15 21:08:05 +00:00
|
|
|
|
|
|
|
virtual LayerState GetLayerState(nsDisplayListBuilder* aBuilder,
|
2012-05-03 14:05:55 +00:00
|
|
|
LayerManager* aManager,
|
2015-03-21 16:28:04 +00:00
|
|
|
const ContainerLayerParameters& aParameters) override
|
2010-07-15 21:08:05 +00:00
|
|
|
{
|
2012-07-06 13:23:09 +00:00
|
|
|
if (aManager->IsCompositingCheap()) {
|
|
|
|
// Since ImageLayers don't require additional memory of the
|
|
|
|
// video frames we have to have anyway, we can't save much by
|
|
|
|
// making layers inactive. Also, for many accelerated layer
|
|
|
|
// managers calling imageContainer->GetCurrentAsSurface can be
|
|
|
|
// very expensive. So just always be active when compositing is
|
|
|
|
// cheap (i.e. hardware accelerated).
|
2010-08-02 03:06:58 +00:00
|
|
|
return LAYER_ACTIVE;
|
|
|
|
}
|
2013-03-19 12:23:54 +00:00
|
|
|
HTMLMediaElement* elem =
|
|
|
|
static_cast<HTMLMediaElement*>(mFrame->GetContent());
|
2012-11-29 22:11:06 +00:00
|
|
|
return elem->IsPotentiallyPlaying() ? LAYER_ACTIVE_FORCE : LAYER_INACTIVE;
|
2010-07-15 21:08:05 +00:00
|
|
|
}
|
2010-03-01 23:41:49 +00:00
|
|
|
};
|
2008-07-09 08:22:20 +00:00
|
|
|
|
2013-02-14 11:12:27 +00:00
|
|
|
void
|
2008-07-09 08:22:20 +00:00
|
|
|
nsVideoFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists)
|
|
|
|
{
|
|
|
|
if (!IsVisibleForPainting(aBuilder))
|
2013-02-14 11:12:27 +00:00
|
|
|
return;
|
2008-07-09 08:22:20 +00:00
|
|
|
|
|
|
|
DO_GLOBAL_REFLOW_COUNT_DSP("nsVideoFrame");
|
|
|
|
|
2013-02-14 11:08:08 +00:00
|
|
|
DisplayBorderBackgroundOutline(aBuilder, aLists);
|
2008-07-09 08:22:20 +00:00
|
|
|
|
2014-11-15 00:45:23 +00:00
|
|
|
const bool shouldDisplayPoster = ShouldDisplayPoster();
|
|
|
|
|
|
|
|
// NOTE: If we're displaying a poster image (instead of video data), we can
|
|
|
|
// trust the nsImageFrame to constrain its drawing to its content rect
|
|
|
|
// (which happens to be the same as our content rect).
|
|
|
|
uint32_t clipFlags;
|
|
|
|
if (shouldDisplayPoster ||
|
|
|
|
!nsStyleUtil::ObjectPropsMightCauseOverflow(StylePosition())) {
|
|
|
|
clipFlags =
|
|
|
|
DisplayListClipState::ASSUME_DRAWING_RESTRICTED_TO_CONTENT_RECT;
|
|
|
|
} else {
|
|
|
|
clipFlags = 0;
|
|
|
|
}
|
|
|
|
|
2013-03-04 09:56:02 +00:00
|
|
|
DisplayListClipState::AutoClipContainingBlockDescendantsToContentBox
|
2014-11-15 00:45:23 +00:00
|
|
|
clip(aBuilder, this, clipFlags);
|
2010-09-09 15:21:47 +00:00
|
|
|
|
2014-11-15 00:45:23 +00:00
|
|
|
if (HasVideoElement() && !shouldDisplayPoster) {
|
2013-03-04 09:56:02 +00:00
|
|
|
aLists.Content()->AppendNewToTop(
|
2010-08-13 10:01:13 +00:00
|
|
|
new (aBuilder) nsDisplayVideo(aBuilder, this));
|
2008-12-17 00:27:46 +00:00
|
|
|
}
|
2008-07-09 08:22:20 +00:00
|
|
|
|
2013-02-26 21:06:51 +00:00
|
|
|
// Add child frames to display list. We expect various children,
|
|
|
|
// but only want to draw mPosterImage conditionally. Others we
|
|
|
|
// always add to the display list.
|
2015-06-29 20:02:21 +00:00
|
|
|
for (nsIFrame* child : mFrames) {
|
2014-11-15 00:45:23 +00:00
|
|
|
if (child->GetContent() != mPosterImage || shouldDisplayPoster) {
|
2013-02-14 11:08:08 +00:00
|
|
|
child->BuildDisplayListForStackingContext(aBuilder,
|
|
|
|
aDirtyRect - child->GetOffsetTo(this),
|
2013-03-04 09:56:02 +00:00
|
|
|
aLists.Content());
|
2009-06-26 07:25:17 +00:00
|
|
|
} else if (child->GetType() == nsGkAtoms::boxFrame) {
|
2013-02-14 11:08:08 +00:00
|
|
|
child->BuildDisplayListForStackingContext(aBuilder,
|
|
|
|
aDirtyRect - child->GetOffsetTo(this),
|
2013-03-04 09:56:02 +00:00
|
|
|
aLists.Content());
|
2009-06-26 07:25:17 +00:00
|
|
|
}
|
2008-07-09 08:22:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIAtom*
|
|
|
|
nsVideoFrame::GetType() const
|
|
|
|
{
|
|
|
|
return nsGkAtoms::HTMLVideoFrame;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ACCESSIBILITY
|
2012-09-28 21:53:44 +00:00
|
|
|
a11y::AccType
|
|
|
|
nsVideoFrame::AccessibleType()
|
2008-07-09 08:22:20 +00:00
|
|
|
{
|
2012-12-18 01:25:52 +00:00
|
|
|
return a11y::eHTMLMediaType;
|
2008-07-09 08:22:20 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-01-05 23:31:14 +00:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2014-02-18 07:47:48 +00:00
|
|
|
nsresult
|
2008-07-09 08:22:20 +00:00
|
|
|
nsVideoFrame::GetFrameName(nsAString& aResult) const
|
|
|
|
{
|
|
|
|
return MakeFrameName(NS_LITERAL_STRING("HTMLVideo"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-08-24 14:34:44 +00:00
|
|
|
LogicalSize
|
|
|
|
nsVideoFrame::ComputeSize(nsRenderingContext *aRenderingContext,
|
|
|
|
WritingMode aWM,
|
|
|
|
const LogicalSize& aCBSize,
|
|
|
|
nscoord aAvailableISize,
|
|
|
|
const LogicalSize& aMargin,
|
|
|
|
const LogicalSize& aBorder,
|
|
|
|
const LogicalSize& aPadding,
|
2014-11-11 11:02:41 +00:00
|
|
|
ComputeSizeFlags aFlags)
|
2008-07-09 08:22:20 +00:00
|
|
|
{
|
2010-01-09 00:37:30 +00:00
|
|
|
nsSize size = GetVideoIntrinsicSize(aRenderingContext);
|
2008-07-09 08:22:20 +00:00
|
|
|
|
|
|
|
IntrinsicSize intrinsicSize;
|
|
|
|
intrinsicSize.width.SetCoordValue(size.width);
|
|
|
|
intrinsicSize.height.SetCoordValue(size.height);
|
|
|
|
|
2013-06-25 22:00:04 +00:00
|
|
|
// Only video elements have an intrinsic ratio.
|
|
|
|
nsSize intrinsicRatio = HasVideoElement() ? size : nsSize(0, 0);
|
2008-07-09 08:22:20 +00:00
|
|
|
|
2014-08-24 14:34:57 +00:00
|
|
|
return nsLayoutUtils::ComputeSizeWithIntrinsicDimensions(aWM, aRenderingContext,
|
2008-07-09 08:22:20 +00:00
|
|
|
this,
|
|
|
|
intrinsicSize,
|
|
|
|
intrinsicRatio,
|
2014-08-24 14:34:57 +00:00
|
|
|
aCBSize,
|
|
|
|
aMargin,
|
|
|
|
aBorder,
|
|
|
|
aPadding);
|
2008-07-09 08:22:20 +00:00
|
|
|
}
|
|
|
|
|
2014-07-24 17:03:25 +00:00
|
|
|
nscoord nsVideoFrame::GetMinISize(nsRenderingContext *aRenderingContext)
|
2008-07-09 08:22:20 +00:00
|
|
|
{
|
2014-12-09 14:00:51 +00:00
|
|
|
nsSize size = GetVideoIntrinsicSize(aRenderingContext);
|
|
|
|
nscoord result = GetWritingMode().IsVertical() ? size.height : size.width;
|
2008-07-09 08:22:20 +00:00
|
|
|
DISPLAY_MIN_WIDTH(this, result);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-07-24 17:03:25 +00:00
|
|
|
nscoord nsVideoFrame::GetPrefISize(nsRenderingContext *aRenderingContext)
|
2008-07-09 08:22:20 +00:00
|
|
|
{
|
2014-12-09 14:00:51 +00:00
|
|
|
nsSize size = GetVideoIntrinsicSize(aRenderingContext);
|
|
|
|
nscoord result = GetWritingMode().IsVertical() ? size.height : size.width;
|
2008-07-09 08:22:20 +00:00
|
|
|
DISPLAY_PREF_WIDTH(this, result);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsSize nsVideoFrame::GetIntrinsicRatio()
|
|
|
|
{
|
2013-06-25 22:00:04 +00:00
|
|
|
if (!HasVideoElement()) {
|
|
|
|
// Audio elements have no intrinsic ratio.
|
|
|
|
return nsSize(0, 0);
|
|
|
|
}
|
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
return GetVideoIntrinsicSize(nullptr);
|
2008-07-09 08:22:20 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool nsVideoFrame::ShouldDisplayPoster()
|
2009-06-26 07:25:17 +00:00
|
|
|
{
|
|
|
|
if (!HasVideoElement())
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2009-06-26 07:25:17 +00:00
|
|
|
|
2013-03-19 12:27:35 +00:00
|
|
|
HTMLVideoElement* element = static_cast<HTMLVideoElement*>(GetContent());
|
2009-06-26 07:25:17 +00:00
|
|
|
if (element->GetPlayedOrSeeked() && HasVideoData())
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2009-06-26 07:25:17 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIImageLoadingContent> imgContent = do_QueryInterface(mPosterImage);
|
2011-10-17 14:59:28 +00:00
|
|
|
NS_ENSURE_TRUE(imgContent, false);
|
2009-11-05 13:56:52 +00:00
|
|
|
|
2009-06-26 07:25:17 +00:00
|
|
|
nsCOMPtr<imgIRequest> request;
|
|
|
|
nsresult res = imgContent->GetRequest(nsIImageLoadingContent::CURRENT_REQUEST,
|
|
|
|
getter_AddRefs(request));
|
|
|
|
if (NS_FAILED(res) || !request) {
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2009-06-26 07:25:17 +00:00
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t status = 0;
|
2009-06-26 07:25:17 +00:00
|
|
|
res = request->GetImageStatus(&status);
|
|
|
|
if (NS_FAILED(res) || (status & imgIRequest::STATUS_ERROR))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2009-11-05 13:56:52 +00:00
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2009-06-26 07:25:17 +00:00
|
|
|
}
|
|
|
|
|
2010-01-09 00:37:30 +00:00
|
|
|
nsSize
|
2011-04-08 01:04:40 +00:00
|
|
|
nsVideoFrame::GetVideoIntrinsicSize(nsRenderingContext *aRenderingContext)
|
2008-07-09 08:22:20 +00:00
|
|
|
{
|
|
|
|
// Defaulting size to 300x150 if no size given.
|
2010-06-15 21:53:44 +00:00
|
|
|
nsIntSize size(300, 150);
|
2013-06-25 22:00:04 +00:00
|
|
|
|
2010-06-15 21:53:44 +00:00
|
|
|
if (!HasVideoElement()) {
|
2013-06-25 22:00:04 +00:00
|
|
|
if (!mFrames.FirstChild()) {
|
2008-12-17 00:27:46 +00:00
|
|
|
return nsSize(0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ask the controls frame what its preferred height is
|
|
|
|
nsBoxLayoutState boxState(PresContext(), aRenderingContext, 0);
|
2009-06-26 07:25:17 +00:00
|
|
|
nscoord prefHeight = mFrames.LastChild()->GetPrefSize(boxState).height;
|
2008-12-17 00:27:46 +00:00
|
|
|
return nsSize(nsPresContext::CSSPixelsToAppUnits(size.width), prefHeight);
|
|
|
|
}
|
|
|
|
|
2013-03-19 12:27:35 +00:00
|
|
|
HTMLVideoElement* element = static_cast<HTMLVideoElement*>(GetContent());
|
2012-05-11 08:32:15 +00:00
|
|
|
if (NS_FAILED(element->GetVideoSize(&size)) && ShouldDisplayPoster()) {
|
|
|
|
// Use the poster image frame's size.
|
|
|
|
nsIFrame *child = mPosterImage->GetPrimaryFrame();
|
|
|
|
nsImageFrame* imageFrame = do_QueryFrame(child);
|
|
|
|
nsSize imgsize;
|
|
|
|
if (NS_SUCCEEDED(imageFrame->GetIntrinsicImageSize(imgsize))) {
|
|
|
|
return imgsize;
|
|
|
|
}
|
|
|
|
}
|
2008-07-09 08:22:20 +00:00
|
|
|
|
2009-11-05 13:56:52 +00:00
|
|
|
return nsSize(nsPresContext::CSSPixelsToAppUnits(size.width),
|
2008-07-09 08:22:20 +00:00
|
|
|
nsPresContext::CSSPixelsToAppUnits(size.height));
|
|
|
|
}
|
2008-12-17 00:27:46 +00:00
|
|
|
|
2013-12-04 01:06:16 +00:00
|
|
|
void
|
2011-09-29 06:19:26 +00:00
|
|
|
nsVideoFrame::UpdatePosterSource(bool aNotify)
|
2009-06-26 07:25:17 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION(HasVideoElement(), "Only call this on <video> elements.");
|
2013-03-19 12:27:35 +00:00
|
|
|
HTMLVideoElement* element = static_cast<HTMLVideoElement*>(GetContent());
|
2009-06-26 07:25:17 +00:00
|
|
|
|
2013-12-04 01:06:16 +00:00
|
|
|
if (element->HasAttr(kNameSpaceID_None, nsGkAtoms::poster)) {
|
|
|
|
nsAutoString posterStr;
|
|
|
|
element->GetPoster(posterStr);
|
|
|
|
mPosterImage->SetAttr(kNameSpaceID_None,
|
|
|
|
nsGkAtoms::src,
|
|
|
|
posterStr,
|
|
|
|
aNotify);
|
|
|
|
} else {
|
|
|
|
mPosterImage->UnsetAttr(kNameSpaceID_None, nsGkAtoms::poster, aNotify);
|
|
|
|
}
|
2009-06-26 07:25:17 +00:00
|
|
|
}
|
|
|
|
|
2014-02-18 07:47:48 +00:00
|
|
|
nsresult
|
2012-08-22 15:56:38 +00:00
|
|
|
nsVideoFrame::AttributeChanged(int32_t aNameSpaceID,
|
2009-06-26 07:25:17 +00:00
|
|
|
nsIAtom* aAttribute,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aModType)
|
2009-06-26 07:25:17 +00:00
|
|
|
{
|
2009-07-07 02:02:06 +00:00
|
|
|
if (aAttribute == nsGkAtoms::poster && HasVideoElement()) {
|
2013-12-04 01:06:16 +00:00
|
|
|
UpdatePosterSource(true);
|
2009-06-26 07:25:17 +00:00
|
|
|
}
|
|
|
|
return nsContainerFrame::AttributeChanged(aNameSpaceID,
|
|
|
|
aAttribute,
|
|
|
|
aModType);
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool nsVideoFrame::HasVideoElement() {
|
2014-07-13 02:20:42 +00:00
|
|
|
nsCOMPtr<nsIDOMHTMLMediaElement> mediaDomElement = do_QueryInterface(mContent);
|
|
|
|
return mediaDomElement->IsVideo();
|
2009-06-26 07:25:17 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool nsVideoFrame::HasVideoData()
|
2008-12-17 00:27:46 +00:00
|
|
|
{
|
2009-06-26 07:25:17 +00:00
|
|
|
if (!HasVideoElement())
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2013-03-19 12:27:35 +00:00
|
|
|
HTMLVideoElement* element = static_cast<HTMLVideoElement*>(GetContent());
|
2012-05-11 08:32:15 +00:00
|
|
|
nsIntSize size(0, 0);
|
|
|
|
element->GetVideoSize(&size);
|
2009-06-26 07:25:17 +00:00
|
|
|
return size != nsIntSize(0,0);
|
2008-12-17 00:27:46 +00:00
|
|
|
}
|