Use Document::renderView() instead.
Created attachment 211024 [details] patch
Comment on attachment 211024 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=211024&action=review A+, good patch, would review again! > Source/WebCore/dom/Document.h:-546 > - // FIXME: Remove this, callers that have a Document* should call renderView(). > - // Shadow the implementations on Node to provide faster access for documents. > - RenderView* renderer() const { return m_renderView; } Thanks for fixing my FIXME! :D
https://trac.webkit.org/r155344
Comment on attachment 211024 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=211024&action=review > Source/WebCore/dom/Document.h:1187 > + RenderObject* renderer() const WTF_DELETED_FUNCTION; In cases like this I often just make the return type void.