Good afternoon everyone
I just realized that this piece of code checks as 100% valid HTML5:
<!doctype html>
<html>
<title>asd</title>
<script src="Js.js"></script>
<script>alert('1');</script>
</html>
MDN claims that the allowed parent elements of the tag are <script>:
Any element that accepts metadata elements, or any element that accepts content phrases. ( source )
I was wondering if anyone knows what a metadata element means? What does the phrase mean?
source
share