Changeset 107133 in webkit
- Timestamp:
- Feb 8, 2012, 2:17:43 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/subpixellayout/Source/WebCore/rendering/RenderView.cpp
r106970 r107133 296 296 bool RenderView::shouldRepaint(const LayoutRect& r) const 297 297 { 298 if (printing() || r.width() == 0 || r.height() == 0) 298 IntRect repaintRect = pixelSnappedIntRect(r); 299 if (printing() || repaintRect.width() == 0 || repaintRect.height() == 0) 299 300 return false; 300 301
Note:
See TracChangeset
for help on using the changeset viewer.