[Webkit-unassigned] [Bug 126570] REGRESSION(r161381): [GTK] Rendering is broken in GTK after r161381

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jan 7 09:40:42 PST 2014


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





--- Comment #4 from Carlos Garcia Campos <cgarcia at igalia.com>  2014-01-07 09:38:25 PST ---
I don't know the details, but the Int/FloatRect::infiniteRect() is not defined the same way than the LayoutRect one, see:

LayoutRect:

LayoutUnit::nearlyMin() / 2, LayoutUnit::nearlyMin() / 2, LayoutUnit::nearlyMax(), LayoutUnit::nearlyMax()

which substituting nearlyMin/Max would be something like

(std::numeric_limits<int>::min() / 2) / 2, (std::numeric_limits<int>::min() / 2) / 2, std::numeric_limits<int>::max() / 2, std::numeric_limits<int>::max() / 2

IntRect:

-std::numeric_limits<int>::max() / 2, -std::numeric_limits<int>::max() / 2, std::numeric_limits<int>::max(), std::numeric_limits<int>::max()

-- 
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