1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:27:34 +00:00

LibWeb: Convert the CSS namespace object to ThrowCompletionOr

This commit is contained in:
Timothy Flynn 2021-10-31 08:34:54 -04:00 committed by Linus Groh
parent 85dc3a8099
commit 0f93c9d6c8
2 changed files with 14 additions and 19 deletions

View file

@ -21,8 +21,8 @@ public:
virtual ~CSSNamespace() override;
private:
JS_DECLARE_OLD_NATIVE_FUNCTION(escape);
JS_DECLARE_OLD_NATIVE_FUNCTION(supports);
JS_DECLARE_NATIVE_FUNCTION(escape);
JS_DECLARE_NATIVE_FUNCTION(supports);
};
}