|
@@ -8,11 +8,11 @@
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
+#include <LibCore/Timer.h>
|
|
|
#include <LibWeb/ARIA/Roles.h>
|
|
|
#include <LibWeb/DOM/Text.h>
|
|
|
#include <LibWeb/HTML/FormAssociatedElement.h>
|
|
|
#include <LibWeb/HTML/HTMLElement.h>
|
|
|
-#include <LibWeb/Platform/Timer.h>
|
|
|
#include <LibWeb/WebIDL/Types.h>
|
|
|
|
|
|
namespace Web::HTML {
|
|
@@ -128,7 +128,7 @@ private:
|
|
|
JS::GCPtr<DOM::Element> m_inner_text_element;
|
|
|
JS::GCPtr<DOM::Text> m_text_node;
|
|
|
|
|
|
- RefPtr<Web::Platform::Timer> m_input_event_timer;
|
|
|
+ RefPtr<Core::Timer> m_input_event_timer;
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#concept-fe-dirty
|
|
|
bool m_dirty_value { false };
|