1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 04:37:44 +00:00

LibWeb: Add constructor to Range IDL interface

This commit is contained in:
Linus Groh 2021-02-17 22:53:04 +01:00 committed by Andreas Kling
parent 0ac07c7351
commit 8f8f7bfd0f
2 changed files with 7 additions and 0 deletions

View file

@ -1,5 +1,7 @@
interface Range {
constructor();
readonly attribute Node startContainer;
readonly attribute unsigned long startOffset;
readonly attribute Node endContainer;