Changeset 107272 in webkit
- Timestamp:
- Feb 9, 2012, 12:11:48 PM (15 years ago)
- Location:
- branches/subpixellayout/Source
- Files:
-
- 3 edited
-
WebCore/Target.pri (modified) (1 diff)
-
WebCore/page/GestureTapHighlighter.cpp (modified) (2 diffs)
-
WebKit/qt/Api/qwebelement.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/subpixellayout/Source/WebCore/Target.pri
r107142 r107272 2778 2778 platform/graphics/qt/FontQt.cpp \ 2779 2779 platform/graphics/qt/FontPlatformDataQt.cpp \ 2780 platform/graphics/qt/FixedPointQt.cpp \2781 platform/graphics/qt/FixedRectQt.cpp \2782 platform/graphics/qt/FixedSizeQt.cpp \2783 2780 platform/graphics/qt/FloatPointQt.cpp \ 2784 2781 platform/graphics/qt/FloatRectQt.cpp \ -
branches/subpixellayout/Source/WebCore/page/GestureTapHighlighter.cpp
r106970 r107272 56 56 Frame* mainFrame = containingFrame->page()->mainFrame(); 57 57 58 LayoutPoint mainFramePoint = mainFrame->view()->rootViewToContents(containingFrame->view()->contentsToRootView( LayoutPoint()));58 LayoutPoint mainFramePoint = mainFrame->view()->rootViewToContents(containingFrame->view()->contentsToRootView(IntPoint())); 59 59 return mainFramePoint; 60 60 } … … 96 96 inline void shiftXEdgesToContainIfStrikes(LayoutRect& rect, const LayoutRect& other) 97 97 { 98 int leftSide = rect.x();99 int rightSide = rect.maxX();98 LayoutUnit leftSide = rect.x(); 99 LayoutUnit rightSide = rect.maxX(); 100 100 101 101 if (!other.isEmpty() && strikes(rect, other)) { -
branches/subpixellayout/Source/WebKit/qt/Api/qwebelement.cpp
r106970 r107272 552 552 if (!m_element) 553 553 return QRect(); 554 return m_element->getRect();554 return FloatRect(m_element->getRect()); 555 555 } 556 556
Note:
See TracChangeset
for help on using the changeset viewer.