[Webkit-unassigned] [Bug 47395] [EFL] Implement pageRect() function

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Oct 7 21:02:45 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=47395





--- Comment #3 from Antonio Gomes <tonikitoo at webkit.org>  2010-10-07 21:02:44 PST ---
For Qt, it was implement as the viewport size:

113 FloatRect ChromeClientQt::pageRect() 
114 { 
115     if (!m_webPage) 
116         return FloatRect(); 
117     return FloatRect(QRectF(QPointF(0, 0), m_webPage->viewportSize())); 
118 }

although it seems like gtk returns the "page" size as well:


113 FloatRect ChromeClientQt::pageRect() 
114 { 
115     if (!m_webPage) 
116         return FloatRect(); 
117     return FloatRect(QRectF(QPointF(0, 0), m_webPage->viewportSize())); 
118 }


They are missing consistency(?)

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list