LibWeb/FileAPI: Update Blob.slice for spec changes

This commit is contained in:
Jamie Mansfield 2024-08-23 00:36:22 +01:00 committed by Tim Ledbetter
commit 9650a5ff33
Notes: github-actions[bot] 2024-08-23 11:09:18 +00:00
2 changed files with 47 additions and 26 deletions

View file

@ -67,6 +67,8 @@ protected:
virtual void initialize(JS::Realm&) override;
WebIDL::ExceptionOr<JS::NonnullGCPtr<Blob>> slice_blob(Optional<i64> start = {}, Optional<i64> end = {}, Optional<String> const& content_type = {});
ByteBuffer m_byte_buffer {};
String m_type {};