Elements with a Transparent content model are defined as follows:
If an element has a transparent content model, then its contents must be structured such that they would be valid HTML 5, even if the transparent element were removed and replaced by the child elements.
Source: https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#transparent_content_model
With this definition, and knowing the permitted content types of elements as defined by the spec, would it be safe to say that these elements can be classified as "Transparent content"?:
<a>, <article>, <aside>, <audio>, <b>, <blockquote>, <button>, <canvas>, <code>, <del>, <details>, <div>, <em>, <fieldset>, <figure>, <footer>, <form>, <h1>, <h2>, <h3>, <h4>, <h5>, <h6>, <header>, <i>, <ins>, <kbd>, <label>, <main>, <mark>, <meter>, <nav>, <p>, <picture>, <pre>, <progress>, <q>, <s>, <section>, <small>, <span>, <strong>, <sub>, <sup>, <textarea>, <u>, <video>
(Does a more authoritative list exist? I wasn't able to find one since search results for transparent content quickly become CSS-related.)
W3 Spec: https://www.w3.org/TR/2011/WD-html5-20110525/content-models.html#transparent-content-models
WHATWG Spec: https://html.spec.whatwg.org/dev/dom.html#transparent-content-models