chromium/third_party/blink/web_tests/svg/custom/html-document-set-title.html

<html>
<head>
<script src="../../resources/js-test.js"></script>
<script>
    function runTest()
    {
        shouldBe('document.title', '""');
    }
</script>
</head>
<body onload="runTest()">
<svg>
<title>Should not be set on HTML Document</title>
</svg>
</body>
</html>