We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0eeaa48 + 41355f2 commit d02c0caCopy full SHA for d02c0ca
src/main/scala/org/scalajs/dom/raw/lib.scala
@@ -1257,6 +1257,15 @@ abstract class Node extends EventTarget {
1257
* MDN
1258
*/
1259
def insertBefore(newChild: Node, refChild: Node): Node = js.native
1260
+
1261
+ /**
1262
+ * Represents the "rendered" text content of a node and its descendants.
1263
+ * As a getter, it approximates the text the user would get if they highlighted the
1264
+ * contents of the element with the cursor and then copied to the clipboard.
1265
+ *
1266
+ * MDN
1267
+ */
1268
+ var innerText: String = js.native
1269
}
1270
1271
@js.native
0 commit comments