Open
Bug 1150144
Opened 10 years ago
Updated 3 years ago
Make HTMLVideoElement::GetVideoSize use CSSIntSize instead of the unitless nsIntSize
Categories
(Core :: Layout, defect, P4)
Core
Layout
Tracking
()
NEW
| Tracking | Status | |
|---|---|---|
| firefox40 | --- | affected |
People
(Reporter: MatsPalmgren_bugz, Unassigned)
Details
Attachments
(1 file)
|
5.87 KB,
patch
|
dholbert
:
review+
|
Details | Diff | Splinter Review |
No description provided.
Flags: in-testsuite-
| Reporter | ||
Comment 1•10 years ago
|
||
Attachment #8586897 -
Flags: review?(dholbert)
Comment 2•10 years ago
|
||
Comment on attachment 8586897 [details] [diff] [review]
fix
Review of attachment 8586897 [details] [diff] [review]:
-----------------------------------------------------------------
r=me regardless; two optional observations/nits below:
::: dom/html/HTMLVideoElement.h
@@ +48,2 @@
> // If there is no video frame, returns NS_ERROR_FAILURE.
> + nsresult GetVideoSize(CSSIntSize* size);
I'm a little mixed about using "CSS Pixels" in the documentation here. Do we have documentation on what "CSS Pixels" means somewhere?
I suspect the returned size is really in terms of "pixels of actual native video data". (e.g. if this is a 300x300 video, rendered in <video style="height:100px;width:50px">, I think (?) this method would still return 300 x 300, not the CSS-specified size -- but the use of the term "CSS pixels" is a bit ambiguous about which of these behaviors someone should expect.)
So, the documentation might be clearer just saying "in pixels" [implying pixels of the actual video-frame]? Or maybe not. Whatever you think WFM.
::: layout/generic/nsVideoFrame.cpp
@@ +161,5 @@
> {
> nsRect area = GetContentRectRelativeToSelf() + aItem->ToReferenceFrame();
> HTMLVideoElement* element = static_cast<HTMLVideoElement*>(GetContent());
>
> + CSSIntSize videoSizeInPx;
Looks like this file (nsVideoFrame) doesn't have an #include for "Units.h" -- maybe we should add one? (I suppose it'll get one indirectly via HTMLVideoElement.h, so maybe that's fine.)
Attachment #8586897 -
Flags: review?(dholbert) → review+
Comment 3•3 years ago
|
||
The bug assignee is inactive on Bugzilla, so the assignee is being reset.
Assignee: MatsPalmgren_bugz → nobody
Updated•3 years ago
|
Severity: minor → S4
You need to log in
before you can comment on or make changes to this bug.
Description
•