Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(579)

Unified Diff: Source/core/css/CSSToLengthConversionData.cpp

Issue 82083002: Move viewport unit resolution to style recalc time (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rename browser zoom to page zoom Created 6 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/CSSToLengthConversionData.h ('k') | Source/core/css/MediaQueryEvaluator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSToLengthConversionData.cpp
diff --git a/Source/core/css/CSSToLengthConversionData.cpp b/Source/core/css/CSSToLengthConversionData.cpp
index 6085a69892b23d5ba62dfdfddae7ebc43e620229..66583963904254f4ca9df0d03dd9e102bba52212 100644
--- a/Source/core/css/CSSToLengthConversionData.cpp
+++ b/Source/core/css/CSSToLengthConversionData.cpp
@@ -31,10 +31,45 @@
#include "config.h"
#include "core/css/CSSToLengthConversionData.h"
+#include "core/rendering/RenderView.h"
#include "core/rendering/style/RenderStyle.h"
namespace WebCore {
+CSSToLengthConversionData::CSSToLengthConversionData(const RenderStyle* style, const RenderStyle* rootStyle, const RenderView* renderView, float zoom, bool computingFontSize)
+ : m_style(style)
+ , m_rootStyle(rootStyle)
+ , m_viewportWidth(renderView ? renderView->layoutViewportWidth() : 0)
+ , m_viewportHeight(renderView ? renderView->layoutViewportHeight() : 0)
+ , m_zoom(zoom)
+ , m_useEffectiveZoom(false)
+ , m_computingFontSize(computingFontSize)
+{
+ ASSERT(zoom > 0);
+}
+
+CSSToLengthConversionData::CSSToLengthConversionData(const RenderStyle* style, const RenderStyle* rootStyle, const RenderView* renderView, bool computingFontSize)
+ : m_style(style)
+ , m_rootStyle(rootStyle)
+ , m_viewportWidth(renderView ? renderView->layoutViewportWidth() : 0)
+ , m_viewportHeight(renderView ? renderView->layoutViewportHeight() : 0)
+ , m_useEffectiveZoom(true)
+ , m_computingFontSize(computingFontSize)
+{
+}
+
+CSSToLengthConversionData::CSSToLengthConversionData(const RenderStyle* style, const RenderStyle* rootStyle, float viewportWidth, float viewportHeight, float zoom, bool computingFontSize)
+ : m_style(style)
+ , m_rootStyle(rootStyle)
+ , m_viewportWidth(viewportWidth)
+ , m_viewportHeight(viewportHeight)
+ , m_zoom(zoom)
+ , m_useEffectiveZoom(false)
+ , m_computingFontSize(computingFontSize)
+{
+ ASSERT(zoom > 0);
+}
+
float CSSToLengthConversionData::zoom() const
{
if (m_useEffectiveZoom)
@@ -42,4 +77,25 @@ float CSSToLengthConversionData::zoom() const
return m_zoom;
}
+double CSSToLengthConversionData::viewportWidthPercent() const
+{
+ m_style->setHasViewportUnits();
+ return m_viewportWidth / 100;
+}
+double CSSToLengthConversionData::viewportHeightPercent() const
+{
+ m_style->setHasViewportUnits();
+ return m_viewportHeight / 100;
+}
+double CSSToLengthConversionData::viewportMinPercent() const
+{
+ m_style->setHasViewportUnits();
+ return std::min(m_viewportWidth, m_viewportHeight) / 100;
+}
+double CSSToLengthConversionData::viewportMaxPercent() const
+{
+ m_style->setHasViewportUnits();
+ return std::max(m_viewportWidth, m_viewportHeight) / 100;
+}
+
} // namespace WebCore
« no previous file with comments | « Source/core/css/CSSToLengthConversionData.h ('k') | Source/core/css/MediaQueryEvaluator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698