doogie
doogie copied to clipboard
A Chromium-based web browser with tree-style pages
From my minimal research, it appears CEF does not tell us whether a browser is playing audio, so I can't add an audio icon like FF/Chrome do. This might be...
Need to be able to stop showing JS dialogs if the user wants it that way. This should be a profile-level setting (really just in the sqlite DB) and should...
Akin to FF's TST, when a tree is collapsed, we should show the full child count (including nested) somewhere.
Per [this issue](https://bitbucket.org/chromiumembedded/cef/issues/1586/add-pepper-flash-plugin-support) and other forum posts, we simply need `--ppapi-flash-path` or `--enable-system-flash` as a CLI arg. This should be a bubble-level setting.
There was a [CEF issue](https://bitbucket.org/chromiumembedded/cef/issues/649) but it was closed. There is a [CEF PR](https://bitbucket.org/chromiumembedded/cef/pull-requests/51) but it is stalled.
This requires `--enable-media-stream` as a CLI arg. Unfortunately, CEF does not allow a permission-based access, it's either CLI or bust (ref [this post](http://www.magpcss.org/ceforum/viewtopic.php?f=6&t=13791)). I [asked](http://www.magpcss.org/ceforum/viewtopic.php?f=7&t=15347) but was unanswered concerning mic/vid...
Simply support `CefGeolocationHandler::OnRequestGeolocationPermission`, not sure we even have to leverage Qt's geolocation utils.
Need to implement ourselves because CEF [will](https://code.google.com/archive/p/chromiumembedded/issues/1160) [not](http://www.magpcss.org/ceforum/viewtopic.php?f=10&t=11408) do it (not even callbacks). We'd need to use [JS integration for window binding](https://bitbucket.org/chromiumembedded/cef/wiki/JavaScriptIntegration.md#markdown-header-window-binding) and do the IPC ourselves.
See Chromium bug: https://bugs.chromium.org/p/chromium/issues/detail?id=746477
Reposting from [CEF forum](http://www.magpcss.org/ceforum/viewtopic.php?f=6&t=15298): In Chrome, when I attempt to reload a page that was the result of a form submission, I am presented a dialog asking me if I...