macOS: Document missing wxWebView features and don't test for them

This commit is contained in:
Tobias Taschner
2020-12-14 13:40:32 +01:00
parent b509b0d687
commit 10398b8f72
2 changed files with 10 additions and 4 deletions

View File

@@ -643,6 +643,8 @@ public:
Set the editable property of the web control. Enabling allows the user
to edit the page even if the @c contenteditable attribute is not set.
The exact capabilities vary with the backend being used.
@note This is not implemented on macOS.
*/
virtual void SetEditable(bool enable = true) = 0;
@@ -773,14 +775,14 @@ public:
/**
Clear the history, this will also remove the visible page.
@note This is not implemented on the WebKit2GTK+ backend.
@note This is not implemented on the WebKit2GTK+ backend and macOS.
*/
virtual void ClearHistory() = 0;
/**
Enable or disable the history. This will also clear the history.
@note This is not implemented on the WebKit2GTK+ backend.
@note This is not implemented on the WebKit2GTK+ backend and macOS.
*/
virtual void EnableHistory(bool enable = true) = 0;