LibWeb: Implement IDBFactory::cmp

This commit is contained in:
stelar7 2024-11-11 10:49:44 +01:00 committed by Andreas Kling
commit 331f26a88b
Notes: github-actions[bot] 2024-11-25 10:54:47 +00:00
14 changed files with 655 additions and 1 deletions

View file

@ -21,6 +21,7 @@ public:
virtual ~IDBFactory() override;
WebIDL::ExceptionOr<GC::Ref<IDBOpenDBRequest>> open(String const& name, Optional<u64> version);
WebIDL::ExceptionOr<i8> cmp(JS::Value first, JS::Value second);
protected:
explicit IDBFactory(JS::Realm&);