Visit https://en.wikipedia.org/api/rest_v1/page/html/...And_Justice_for_All_(film) and in the HTML you'll see <title><i>...And Justice for All</i> (film)</title>.
Previously the actual page title would be in the title element, not the displaytitle's HTML (not really sure when this broke). Aside from it being a regression, using the displaytitle is a bad fit because you can't have HTML tags inside the title (per https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title)
If this is the intended behavior, what's the correct way to get a page's title out of its HTML? Parse it from <link rel="dc:isVersionOf" href="//en.wikipedia.org/wiki/...And_Justice_for_All_(film)"/>?