ladybird/Tests/LibWeb/Text/input/title-with-meta-title.html
Timothy Flynn 43e55668eb LibWeb: Implement Document's supported property names closer to the spec
Our implementation was errantly matching HTML tags other than the list
specified by the spec. For example, a <meta name=title> tag would be a
match for document.title.

For example, bandcamp will dynamically update its title when audio is
played as follows:

    document.title = "▶︎ " + document.title;

And bandcamp also has a <meta name=title> tag. The result was that the
title would become "▶︎ [object HTMLMetaElement]".
2024-03-29 08:52:01 -04:00

10 lines
190 B
HTML

<head>
<title>foo</title>
<meta name="title" content="bar" />
</head>
<script src="include.js"></script>
<script>
test(() => {
println(document.title);
});
</script>