ladybird/Documentation
Sam Atkins fdcece2e88 LibWeb/CSS: Implement legacy name aliases for properties
When a property is a "legacy name alias", any time it is used in CSS or
via the CSSOM its aliased name is used instead.
(See https://drafts.csswg.org/css-cascade-5/#legacy-name-alias)

This means we only care about the alias when parsing a string as a
PropertyID - and we can just return the PropertyID it is an alias for.
No need for a distinct PropertyID for it, and no need for LibWeb to
care about it at all.

Previously, we had a bunch of these properties, which misused our code
for "logical aliases", some of which I've discovered were not even
fully implemented. But with this change, all that code can go away, and
making a legacy alias is just a case of putting it in the JSON. This
also shrinks `StyleProperties` as it doesn't need to contain data for
these aliases, and removes a whole load of `-webkit-*` spam from the
style inspector.
2024-09-27 17:16:23 +01:00
..
Browser LibWeb/CSS: Implement legacy name aliases for properties 2024-09-27 17:16:23 +01:00
HumanInterfaceGuidelines Documentation: Add section on Ellipses to Text.md 2023-05-23 05:59:49 +02:00
AdvancedBuildInstructions.md Documentation: Add a note about clang plugins 2024-08-28 15:36:47 +02:00
AndroidStudioConfiguration.md Meta: Update Documentation and CI for repo move 2024-06-03 10:53:53 +02:00
BuildInstructionsLadybird.md Documentation: Add missing required Fedora packages 2024-09-23 11:13:01 -06:00
BuildProfilingInstructions.md Meta: Update Documentation and CI for repo move 2024-06-03 10:53:53 +02:00
CLionCodeStyleSettings.xml Documentation: Recommend CLion code style settings over manual steps 2022-12-03 23:54:48 +00:00
CLionConfiguration.md Documentation: Update IDE docs to reference CMakePresets.json 2024-06-06 10:09:46 -06:00
CodingStyle.md Documentation: Change two titles to not mention SerenityOS 2024-08-17 11:51:06 -06:00
EmacsConfiguration.md Meta: Add .clangd config file (with project-recommended defaults) 2024-07-09 04:40:52 -06:00
EventLoop.md Documentation: Remove references to serenity.sh and its build configs 2024-06-03 10:53:53 +02:00
FAQ.md Documentation: Add a bit of history to the FAQ 2024-07-21 07:07:33 +02:00
GettingStartedContributing.md Documentation: Rephrase note about good first issues in beginner's guide 2024-08-28 20:37:46 -06:00
HelixConfiguration.md Meta: Add .clangd config file (with project-recommended defaults) 2024-07-09 04:40:52 -06:00
NvimConfiguration.md Meta: Add .clangd config file (with project-recommended defaults) 2024-07-09 04:40:52 -06:00
Patterns.md Documentation: Remove SerenityOS mentions from patterns reference 2024-08-17 11:51:06 -06:00
QtCreatorConfiguration.md Documentation: Fix dead link in Qt creator page 2024-07-01 21:15:22 -04:00
README.md Documentation: Add Browsing Contexts and Navigables to Browser/LibWeb 2024-09-20 08:15:31 +02:00
RunningTests.md Documentation: Recommend enabling Qt chrome when running WPT on MacOS 2024-08-17 07:43:29 +02:00
SelfHostedRunners.md Meta: Update for GitHub org rename to LadybirdBrowser 2024-06-09 13:02:56 +02:00
SmartPointers.md Documentation: Remove extra <hr>s from the smart pointers reference 2024-08-17 11:51:06 -06:00
StringFormatting.md Documentation: Remove references to serenity.sh and its build configs 2024-06-03 10:53:53 +02:00
Troubleshooting.md Documentation: Add guidance on X11R6 linking warning message 2024-07-28 23:45:27 -06:00
VimConfiguration.md Documentation: Remove references to serenity.sh and its build configs 2024-06-03 10:53:53 +02:00
VSCodeConfiguration.md Documentation: Remove now-unnecessary environment settings for VsCode 2024-07-18 14:48:20 +02:00

Ladybird Documentation

Ladybird development moves quickly, so some of these might be out of date. Please let us know if something here is wrong, or submit a PR with any additions or corrections! If you have any questions that are not answered here or in the FAQ, you are welcome to ask on Discord.

Building and Running

Configuring Editors

Development

Browser/LibWeb