summaryrefslogtreecommitdiff
path: root/Documentation/Browser
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-08-07 15:46:44 +0200
committerAndreas Kling <kling@serenityos.org>2022-09-06 00:27:09 +0200
commit12042f075767d357a3d54b008609b0dd76354ad9 (patch)
treeeef7f18424d58fd341cd517f18c0903260e4ebb8 /Documentation/Browser
parent5d6cb9cbdbb1ac309d68c41929ab84f73f68753c (diff)
downloadserenity-12042f075767d357a3d54b008609b0dd76354ad9.zip
LibWeb: Make CSSRule and all its subclasses GC-allocated
Diffstat (limited to 'Documentation/Browser')
-rw-r--r--Documentation/Browser/AddNewIDLFile.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/Documentation/Browser/AddNewIDLFile.md b/Documentation/Browser/AddNewIDLFile.md
index 1024e728c6..54f6e455bd 100644
--- a/Documentation/Browser/AddNewIDLFile.md
+++ b/Documentation/Browser/AddNewIDLFile.md
@@ -39,7 +39,6 @@ interface CSSRule {
- It must have a public `using WrapperType = Bindings::HTMLDetailsElementWrapper;`
7. Depending on what kind of thing your interface is, you may need to add it to the `WrapperFactory` of that kind:
- - CSSRules: [`LibWeb/Bindings/CSSRuleWrapperFactory.cpp`](../../Userland/Libraries/LibWeb/Bindings/CSSRuleWrapperFactory.cpp)
- Events: [`LibWeb/Bindings/EventWrapperFactory.cpp`](../../Userland/Libraries/LibWeb/Bindings/EventWrapperFactory.cpp)
- Elements: [`LibWeb/Bindings/NodeWrapperFactory.cpp`](../../Userland/Libraries/LibWeb/Bindings/NodeWrapperFactory.cpp)