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

Unified Diff: third_party/WebKit/Source/core/css/MediaValues.cpp

Issue 2738173002: Initial containing block for print not affected by page zoom. (Closed)
Patch Set: Created 3 years, 9 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 | « no previous file | third_party/WebKit/Source/core/frame/FrameView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/MediaValues.cpp
diff --git a/third_party/WebKit/Source/core/css/MediaValues.cpp b/third_party/WebKit/Source/core/css/MediaValues.cpp
index c35e2947008f95623fe44b683c5b502d28847eb7..a9248b18b6f7c6097d8a53b92b061dc333cd2f3c 100644
--- a/third_party/WebKit/Source/core/css/MediaValues.cpp
+++ b/third_party/WebKit/Source/core/css/MediaValues.cpp
@@ -32,16 +32,12 @@ MediaValues* MediaValues::createDynamicIfFrameExists(LocalFrame* frame) {
double MediaValues::calculateViewportWidth(LocalFrame* frame) {
ASSERT(frame && frame->view() && frame->document());
- int viewportWidth = frame->view()->layoutSize(IncludeScrollbars).width();
- return adjustDoubleForAbsoluteZoom(
- viewportWidth, frame->document()->layoutViewItem().styleRef());
+ return frame->view()->viewportSizeForViewportUnits().width();
}
double MediaValues::calculateViewportHeight(LocalFrame* frame) {
ASSERT(frame && frame->view() && frame->document());
- int viewportHeight = frame->view()->layoutSize(IncludeScrollbars).height();
- return adjustDoubleForAbsoluteZoom(
- viewportHeight, frame->document()->layoutViewItem().styleRef());
+ return frame->view()->viewportSizeForViewportUnits().height();
bokan 2017/03/09 16:29:56 I think this is slightly wrong. The reason we have
rune 2017/03/09 17:47:36 Why is there a difference between ICB and viewport
rune 2017/03/09 22:04:55 I added a new viewportSizeForMediaQueries() instea
}
int MediaValues::calculateDeviceWidth(LocalFrame* frame) {
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698