From 79fc7d7c7c31c521c70af66b7dc37cf38743c703 Mon Sep 17 00:00:00 2001 From: Shannon Booth Date: Sat, 10 Jun 2023 19:39:56 +1200 Subject: [PATCH] LibWeb: Add HTML::Task::Source::FileReading --- Userland/Libraries/LibWeb/HTML/EventLoop/Task.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Userland/Libraries/LibWeb/HTML/EventLoop/Task.h b/Userland/Libraries/LibWeb/HTML/EventLoop/Task.h index dfbd0a3a14..13c73ccce8 100644 --- a/Userland/Libraries/LibWeb/HTML/EventLoop/Task.h +++ b/Userland/Libraries/LibWeb/HTML/EventLoop/Task.h @@ -38,6 +38,9 @@ public: // https://html.spec.whatwg.org/multipage/webappapis.html#navigation-and-traversal-task-source NavigationAndTraversal, + + // https://w3c.github.io/FileAPI/#fileReadingTaskSource + FileReading, }; static NonnullOwnPtr create(Source source, DOM::Document const* document, JS::SafeFunction steps)