summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy <webmaster@RealityRipple.com>2020-08-07 14:29:41 -0700
committerMoonchild <moonchild@palemoon.org>2020-08-30 09:23:37 +0000
commitc75e412f17a0cfcf4036a4c7a87ad1476601cc5e (patch)
treea04f0411a4c68898ab0788f709d49f437738b3e0
parent0bbe6ec10589b8540aa86200bf2b209ad4e563ba (diff)
downloadUXP-c75e412f17a0cfcf4036a4c7a87ad1476601cc5e.tar
UXP-c75e412f17a0cfcf4036a4c7a87ad1476601cc5e.tar.gz
UXP-c75e412f17a0cfcf4036a4c7a87ad1476601cc5e.tar.lz
UXP-c75e412f17a0cfcf4036a4c7a87ad1476601cc5e.tar.xz
UXP-c75e412f17a0cfcf4036a4c7a87ad1476601cc5e.zip
Issue #1620 - Remove Development Comments
-rw-r--r--dom/html/nsGenericHTMLElement.cpp2
-rw-r--r--layout/generic/nsImageFrame.cpp4
-rw-r--r--layout/svg/nsSVGOuterSVGFrame.cpp16
3 files changed, 4 insertions, 18 deletions
diff --git a/dom/html/nsGenericHTMLElement.cpp b/dom/html/nsGenericHTMLElement.cpp
index 922ba1d29..afbc49b6b 100644
--- a/dom/html/nsGenericHTMLElement.cpp
+++ b/dom/html/nsGenericHTMLElement.cpp
@@ -1480,8 +1480,6 @@ nsGenericHTMLElement::MapImageSizeAttributesInto(const nsMappedAttributes* aAttr
}
}
- // 2020-07-15 (RealityRipple) Much of this is a guess based on a few sources.
- // Please go over this with a fine-tooth comb before production.
if (Preferences::GetBool("layout.css.width-and-height-map-to-aspect-ratio.enabled") &&
aMapAspectRatio && aWidth && aHeight) {
Maybe<double> w;
diff --git a/layout/generic/nsImageFrame.cpp b/layout/generic/nsImageFrame.cpp
index 029f82e45..2646125c9 100644
--- a/layout/generic/nsImageFrame.cpp
+++ b/layout/generic/nsImageFrame.cpp
@@ -287,10 +287,6 @@ nsImageFrame::Init(nsIContent* aContent,
p->AdjustPriority(-1);
}
-// 2020-07-14 (RealityRipple) Firefox is doing this completely differently
-// because of loading="lazy" support and the StyleDisplay()->IsContainSize()
-// property. Double-check all of this for problems.
-
static IntrinsicSize
ComputeIntrinsicSize(imgIContainer* aImage,
bool aUseMappedRatio,
diff --git a/layout/svg/nsSVGOuterSVGFrame.cpp b/layout/svg/nsSVGOuterSVGFrame.cpp
index d8cd2cb77..3f68245e2 100644
--- a/layout/svg/nsSVGOuterSVGFrame.cpp
+++ b/layout/svg/nsSVGOuterSVGFrame.cpp
@@ -234,22 +234,14 @@ nsSVGOuterSVGFrame::GetIntrinsicSize()
/* virtual */ AspectRatio
nsSVGOuterSVGFrame::GetIntrinsicRatio()
-{
- // 2020-07-14 (RealityRipple) Firefox Uses a new IsReplacedAndContainSize(this)
- // function call [Line 96-99 on trunk].
+{
+ // When 'contain: size' is implemented, make sure to check for it.
/*
- static inline bool IsReplacedAndContainSize(const nsSVGOuterSVGFrame* aFrame) {
- return aFrame->GetContent->GetParent() &&
- aFrame->StyleDisplay()->IsContainSize();
- }
- */
- // but since contain: size doesn't exist in Pale Moon yet...
-/*
- if (IsReplacedAndContainSize(this)) {
+ if (this->GetContent->GetParent() && this->StyleDisplay()->IsContainSize()) {
return AspectRatio();
}
*/
-
+
// We only have an intrinsic size/ratio if our width and height attributes
// are both specified and set to non-percentage values, or we have a viewBox
// rect: http://www.w3.org/TR/SVGMobile12/coords.html#IntrinsicSizing