/* * Copyright (c) 2023, Tim Flynn * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include namespace Web::HTML { // https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-tracker struct ToggleTaskTracker { // https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-task // NOTE: We store the task's ID rather than the task itself to avoid ownership issues. Optional task_id; // https://html.spec.whatwg.org/multipage/interaction.html#toggle-task-old-state String old_state; }; }