From b2bb7d919d9e91dde2c7dc9a38454f3ee2aa5c12 Mon Sep 17 00:00:00 2001 From: Brad Parbs Date: Sat, 27 Jan 2024 02:15:34 -0600 Subject: [PATCH] Documentation: Update link to Default.css in LibWeb docs --- Documentation/Browser/LibWebFromLoadingToPainting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/Browser/LibWebFromLoadingToPainting.md b/Documentation/Browser/LibWebFromLoadingToPainting.md index 9b405aa2817..1ee80832d24 100644 --- a/Documentation/Browser/LibWebFromLoadingToPainting.md +++ b/Documentation/Browser/LibWebFromLoadingToPainting.md @@ -78,7 +78,7 @@ We separate CSS rules by their cascade origin. The two origins we're concerned w The cascade origin determines the processing order for rules. The "user-agent" style is the least important, so it gets processed first. Then author style is added on top of that. -Note: the user-agent style is a built-in CSS style sheet that lives in the LibWeb source code: (link to Default.css) +Note: the user-agent style is a built-in CSS style sheet that lives in the LibWeb source code [here](https://github.com/SerenityOS/serenity/blob/master/Userland/Libraries/LibWeb/CSS/Default.css). The end product of style computation is a fully populated StyleProperties object. It has a StyleValue for each CSS::PropertyID. In spec parlance, these are the *computed* values. (Note that these are not the same as you get from `getComputedStyle()`, that API returns the *resolved* values.)