Hi Daniel, Daniel Kahn Gillmor wrote:
> When i launch chromium, i get the following messages spewed regularly > to stderr: > > [5249:5249:43207825632:ERROR:webcursor_gtk.cc(153)] Not implemented reached > in int WebCursor::GetCursorType() const Yep, webcursor_gtk.cc includes quite a few cursor types for which no one has found a Gtk equivalent yet: http://src.chromium.org/viewvc/chrome/trunk/src/webkit/glue/webcursor_gtk.cc?view=markup What pages open when you launch? Installing chromium-dbg and doing chromium -g --single-process break WebCursor::GetCursorType commands p type_ continue end run might be a way to find out which particular cursor type you are hitting (or if you can spare the CPU cycles, just adding a debugging printf in the NotImplemented cases). This is reminiscent of upstream http://crbug.com/48906 but of course that one was already fixed. Thanks for reporting it. Jonathan -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

