LibWeb: Implement the [PutForwards] IDL extended attribute

For example, consider the attribute:

    interface Element {
        [PutForwards=value] readonly attribute DOMTokenList classList;
    }

When `classList` is set, we should instead set the attribute `value` on
the `classList` attribute of the Element interface.
This commit is contained in:
Timothy Flynn 2023-03-14 14:59:06 -04:00 committed by Tim Flynn
commit 9c569e8a0f
Notes: sideshowbarker 2024-07-16 22:56:02 +09:00
3 changed files with 18 additions and 39 deletions

View file

@ -233,8 +233,6 @@ private:
// [[CrossOriginPropertyDescriptorMap]], https://html.spec.whatwg.org/multipage/browsers.html#crossoriginpropertydescriptormap
CrossOriginPropertyDescriptorMap m_cross_origin_property_descriptor_map;
JS_DECLARE_NATIVE_FUNCTION(location_setter);
};
void run_animation_frame_callbacks(DOM::Document&, double now);