Open
Description
The del browser
statement only removes a reference to the object and does not guarantee that object is destroyed. Thus PyBrowser.cefBrowser
C++ object reference is not freed.
Add also Frame.Free() and maybe for other objects as well.
Check __dealloc__
methods if freeing resources there should be done in the Free
method instead.
Related: upstream Issue #2593: Improvements for debugging CefRefPtr lifespan issues.
Update documentation and examples.