You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Retrieves a collection of styleSheet objects representing the style sheets that correspond to each instance of a link or style object in the document. */
4560
4553
readonly styleSheets: StyleSheetList;
4554
+
/**
4555
+
* Returns the element for the specified x coordinate and the specified y coordinate.
4556
+
* @param x The x-offset
4557
+
* @param y The y-offset
4558
+
*/
4559
+
elementFromPoint(x: number, y: number): Element | null;
@@ -13348,7 +13348,6 @@ declare var SubtleCrypto: {
13348
13348
13349
13349
/** The textual content of Element or Attr. If an element has no markup within its content, it has a single child implementing Text that contains the element's text. However, if the element contains markup, it is parsed into information items and Text nodes that form its children. */
13350
13350
interface Text extends CharacterData, Slottable {
13351
-
readonly assignedSlot: HTMLSlotElement | null;
13352
13351
/** Returns the combined data of all direct Text node siblings. */
13353
13352
readonly wholeText: string;
13354
13353
/** Splits data at the given offset and returns the remainder as Text node. */
Copy file name to clipboardExpand all lines: inputfiles/comments.json
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,13 @@
2
2
"mixins": {
3
3
"mixin": {
4
4
"DocumentOrShadowRoot": {
5
+
"methods": {
6
+
"method": {
7
+
"elementFromPoint": {
8
+
"comment": "Returns the element for the specified x coordinate and the specified y coordinate.\n@param x The x-offset\n@param y The y-offset"
9
+
}
10
+
}
11
+
},
5
12
"properties": {
6
13
"property": {
7
14
"styleSheets": {
@@ -752,9 +759,6 @@
752
759
"execCommand": {
753
760
"comment": "Executes a command on the current document, current selection, or the given range.\n@param commandId String that specifies the command to execute. This command can be any of the command identifiers that can be executed in script.\n@param showUI Display the user interface, defaults to false.\n@param value Value to assign."
754
761
},
755
-
"elementFromPoint": {
756
-
"comment": "Returns the element for the specified x coordinate and the specified y coordinate.\n@param x The x-offset\n@param y The y-offset"
757
-
},
758
762
"write": {
759
763
"comment": "Writes one or more HTML expressions to a document in the specified window.\n@param content Specifies the text and HTML tags to write."
0 commit comments