Remove the last remaining client.
Created attachment 220196 [details] patch
Comment on attachment 220196 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=220196&action=review r=me > Source/WebCore/html/HTMLSelectElement.cpp:1264 > + RenderMenuList* menuList = toRenderMenuList(renderer()); I'd make this a RenderMenuList&
Comment on attachment 220196 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=220196&action=review > Source/WebCore/html/HTMLSelectElement.cpp:1144 > + ASSERT(renderer() && renderer()->isMenuList()); Any time we write an ASSERT that would have a "&&" we normally break it into two assertions. That way we can trivially tell which clause is failing if the assertion is hit.
I think this got landed in this commit: https://github.com/WebKit/WebKit/commit/86fe1d37c2f5fde8ee8467e98d2d9e76251194c6 Can this be marked as "RESOLVED FIXED"? Thanks!
Indeed, this patch got landed.