LayoutRect rect(0, 0, 100, 50);
LayoutRect rect(0, 0, 100, 50); IntPoint pt(10, 20); if(rect.contains(pt)) { // do something }This checks whether the point (10, 20) is inside the `LayoutRect` object `rect`. The package library for `LayoutRect` is WebKit. WebKit is an open-source web browser engine used by many web browsers, such as Safari and Chrome.