summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/interfaces/edit-context.idl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
commit0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch)
treea31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /testing/web-platform/tests/interfaces/edit-context.idl
parentInitial commit. (diff)
downloadfirefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz
firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/interfaces/edit-context.idl')
-rw-r--r--testing/web-platform/tests/interfaces/edit-context.idl111
1 files changed, 111 insertions, 0 deletions
diff --git a/testing/web-platform/tests/interfaces/edit-context.idl b/testing/web-platform/tests/interfaces/edit-context.idl
new file mode 100644
index 0000000000..91d8af2ea6
--- /dev/null
+++ b/testing/web-platform/tests/interfaces/edit-context.idl
@@ -0,0 +1,111 @@
+// GENERATED CONTENT - DO NOT EDIT
+// Content was automatically extracted by Reffy into webref
+// (https://github.com/w3c/webref)
+// Source: EditContext API (https://w3c.github.io/edit-context/)
+
+partial interface HTMLElement {
+ attribute EditContext? editContext;
+};
+
+dictionary EditContextInit {
+ DOMString text;
+ unsigned long selectionStart;
+ unsigned long selectionEnd;
+};
+
+[Exposed=Window]
+interface EditContext : EventTarget {
+ constructor(optional EditContextInit options = {});
+
+ undefined updateText(unsigned long rangeStart, unsigned long rangeEnd,
+ DOMString text);
+ undefined updateSelection(unsigned long start, unsigned long end);
+ undefined updateControlBounds(DOMRect controlBounds);
+ undefined updateSelectionBounds(DOMRect selectionBounds);
+ undefined updateCharacterBounds(unsigned long rangeStart, sequence<DOMRect> characterBounds);
+
+ sequence<Element> attachedElements();
+
+ readonly attribute DOMString text;
+ readonly attribute unsigned long selectionStart;
+ readonly attribute unsigned long selectionEnd;
+ readonly attribute unsigned long compositionRangeStart;
+ readonly attribute unsigned long compositionRangeEnd;
+ readonly attribute boolean isComposing;
+ readonly attribute DOMRect controlBounds;
+ readonly attribute DOMRect selectionBounds;
+ readonly attribute unsigned long characterBoundsRangeStart;
+ sequence<DOMRect> characterBounds();
+
+ attribute EventHandler ontextupdate;
+ attribute EventHandler ontextformatupdate;
+ attribute EventHandler oncharacterboundsupdate;
+ attribute EventHandler oncompositionstart;
+ attribute EventHandler oncompositionend;
+};
+
+dictionary TextUpdateEventInit : EventInit {
+ unsigned long updateRangeStart;
+ unsigned long updateRangeEnd;
+ DOMString text;
+ unsigned long selectionStart;
+ unsigned long selectionEnd;
+ unsigned long compositionStart;
+ unsigned long compositionEnd;
+};
+
+[Exposed=Window]
+interface TextUpdateEvent : Event {
+ constructor(DOMString type, optional TextUpdateEventInit options = {});
+ readonly attribute unsigned long updateRangeStart;
+ readonly attribute unsigned long updateRangeEnd;
+ readonly attribute DOMString text;
+ readonly attribute unsigned long selectionStart;
+ readonly attribute unsigned long selectionEnd;
+ readonly attribute unsigned long compositionStart;
+ readonly attribute unsigned long compositionEnd;
+};
+
+dictionary TextFormatInit {
+ unsigned long rangeStart;
+ unsigned long rangeEnd;
+ DOMString textColor;
+ DOMString backgroundColor;
+ DOMString underlineStyle;
+ DOMString underlineThickness;
+ DOMString underlineColor;
+};
+
+[Exposed=Window]
+interface TextFormat {
+ constructor(optional TextFormatInit options = {});
+ readonly attribute unsigned long rangeStart;
+ readonly attribute unsigned long rangeEnd;
+ readonly attribute DOMString textColor;
+ readonly attribute DOMString backgroundColor;
+ readonly attribute DOMString underlineStyle;
+ readonly attribute DOMString underlineThickness;
+ readonly attribute DOMString underlineColor;
+};
+
+dictionary TextFormatUpdateEventInit : EventInit {
+ sequence<TextFormat> textFormats;
+};
+
+[Exposed=Window]
+interface TextFormatUpdateEvent : Event {
+ constructor(DOMString type, optional TextFormatUpdateEventInit options = {});
+ sequence<TextFormat> getTextFormats();
+};
+
+dictionary CharacterBoundsUpdateEventInit : EventInit {
+ unsigned long rangeStart;
+ unsigned long rangeEnd;
+};
+
+[Exposed=Window]
+interface CharacterBoundsUpdateEvent : Event {
+ constructor(DOMString type, optional CharacterBoundsUpdateEventInit options = {});
+ readonly attribute unsigned long rangeStart;
+ readonly attribute unsigned long rangeEnd;
+};