LibWeb: Add Element.{next,previous}ElementSibling IDL attributes

This commit is contained in:
Andreas Kling 2020-08-03 20:32:06 +02:00
parent d367044e67
commit 2dc08d259e
Notes: sideshowbarker 2024-07-19 04:20:49 +09:00

View file

@ -8,5 +8,8 @@ interface Element : Node {
attribute DOMString innerHTML;
[Reflect] attribute DOMString id;
[Reflect=class] attribute DOMString className;
readonly attribute Element? nextElementSibling;
readonly attribute Element? previousElementSibling;
}