Does this issue occur when all extensions are disabled?: Yes
- VS Code Version: 1.104.2
- OS Version: Windows_NT x64 10
Commit: e3a5acf
Steps to Reproduce
- Lets have a code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
const dt = new DataTransfer();
</script>
</body>
</html>
- Hover mouse cursor over
DataTransfer constructor.
ER
Will be displayed JSDoc with description text and link to online docs (mdn) from lib.dom.d.ts as it is declared:
/**
* The **`DataTransfer`** object is used to hold any data transferred between contexts, such as a drag and drop operation, or clipboard read/write.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransfer)
*/
interface DataTransfer {
...
AR
No JSDoc description and no link to online docs (mdn)

Does this issue occur when all extensions are disabled?: Yes
Commit: e3a5acf
Steps to Reproduce
DataTransferconstructor.ER
Will be displayed JSDoc with description text and link to online docs (mdn) from
lib.dom.d.tsas it is declared:AR
No JSDoc description and no link to online docs (mdn)