Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/51feeadcf953d5a4e1876e61350184e11fe1f154
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/51feeadcf953d5a4e1876e61350184e11fe1f154
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/51feeadcf953d5a4e1876e61350184e11fe1f154

The branch, master has been updated
       via  51feeadcf953d5a4e1876e61350184e11fe1f154 (commit)
      from  041e9426c1be16709f620757e79c68843058f43f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=51feeadcf953d5a4e1876e61350184e11fe1f154
commit 51feeadcf953d5a4e1876e61350184e11fe1f154
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>

    HTML: Set up the CSS length measuring context in CSS pixels.

diff --git a/content/handlers/html/html.c b/content/handlers/html/html.c
index 4443d2e..cc3e015 100644
--- a/content/handlers/html/html.c
+++ b/content/handlers/html/html.c
@@ -1533,8 +1533,8 @@ static void html_reformat(struct content *c, int width, 
int height)
 
        htmlc->reflowing = true;
 
-       htmlc->len_ctx.vw = width;
-       htmlc->len_ctx.vh = height;
+       htmlc->len_ctx.vw = nscss_pixels_physical_to_css(width);
+       htmlc->len_ctx.vh = nscss_pixels_physical_to_css(height);
        htmlc->len_ctx.root_style = htmlc->layout->style;
 
        layout_document(htmlc, width, height);


-----------------------------------------------------------------------

Summary of changes:
 content/handlers/html/html.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/handlers/html/html.c b/content/handlers/html/html.c
index 4443d2e..cc3e015 100644
--- a/content/handlers/html/html.c
+++ b/content/handlers/html/html.c
@@ -1533,8 +1533,8 @@ static void html_reformat(struct content *c, int width, 
int height)
 
        htmlc->reflowing = true;
 
-       htmlc->len_ctx.vw = width;
-       htmlc->len_ctx.vh = height;
+       htmlc->len_ctx.vw = nscss_pixels_physical_to_css(width);
+       htmlc->len_ctx.vh = nscss_pixels_physical_to_css(height);
        htmlc->len_ctx.root_style = htmlc->layout->style;
 
        layout_document(htmlc, width, height);


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to