/includes/specials/SpecialPreferences.php contains
$out->wrapWikiMsg(
"<div class=\"successbox\"><strong>\n$1\n</strong></div><div id=\"mw-pref-clear\"></div>", 'savedprefs'
);
and generates
<div class="successbox"><strong>
<p>Your preferences have been saved.
</p>
</strong></div>
The strong element http://www.w3.org/TR/html5/text-level-semantics.html#the-strong-element must contain phrasing content http://www.w3.org/TR/html5/content-models.html#phrasing-content. The p element is not allowed.
Solution: Remove strong and add
.successbox { font-weight: bold; }
Version: unspecified
Severity: trivial
URL: https://translatewiki.net/w/i.php?title=Special:Preferences&success=1