1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:57:44 +00:00

LibWebView: Add a standard "look like the OS" style sheet

It's quite common to want the web-view to match the native OS widgets,
so let's make that easy to do.
This commit is contained in:
Sam Atkins 2023-08-24 11:01:09 +01:00 committed by Sam Atkins
parent 84a5c67d6b
commit 7436f4fec2
4 changed files with 53 additions and 0 deletions

View file

@ -55,6 +55,9 @@ public:
void set_content_scales_to_viewport(bool);
void set_user_style_sheet(String source);
// Load Native.css as the User style sheet, which attempts to make WebView content look as close to
// native GUI::Widgets as possible.
void use_native_user_style_sheet();
private:
OutOfProcessWebView();