1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 03:08:13 +00:00

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

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;
}