From b5afcae315e86e3b163af26f07f5999dc2a169fb Mon Sep 17 00:00:00 2001 From: Shadaj Laddad Date: Fri, 14 May 2021 14:28:54 -0700 Subject: [PATCH] Bring back the dd and dt tags, which are not deprecated but just don't have a type in Scala.js DOM (#477) --- web/html.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/web/html.json b/web/html.json index a67ca95c..25926b2d 100644 --- a/web/html.json +++ b/web/html.json @@ -769,6 +769,20 @@ "docLines" : [ "The HTML <wbr> element represents a word break opportunity—a position within text where the browser may optionally break a line, though its line-breaking rules would not otherwise create a break at that location." ] + }, + { + "tagName" : "dd", + "scalaJSType": "org.scalajs.dom.html.Element", + "docLines" : [ + "The HTML <dd> element indicates the description of a term in a description list ( element represents a description list. The element encloses a list of groups of terms and descriptions. Common uses for this element are to implement a glossary or to display metadata (a list of key-value pairs).\" href=\"/en-US/docs/Web/HTML/Element/dl\"><dl>)." + ] + }, + { + "tagName" : "dt", + "scalaJSType": "org.scalajs.dom.html.Element", + "docLines" : [ + "The HTML <dt> element identifies a term in a description list. This element can occur only as a child element of a  element represents a description list. The element encloses a list of groups of terms and descriptions. Common uses for this element are to implement a glossary or to display metadata (a list of key-value pairs).\" href=\"/en-US/docs/Web/HTML/Element/dl\"><dl>. It is usually followed by a element indicates the description of a term in a description list (
).\" href=\"/en-US/docs/Web/HTML/Element/dd\"><dd> element; however, multiple <dt> elements in a row indicate several terms that are all defined by the immediate next element indicates the description of a term in a description list (
).\" href=\"/en-US/docs/Web/HTML/Element/dd\"><dd> element." + ] } ], "attributes" : [