chromium/chrome/test/data/optimization_guide/random_title.html


<!DOCTYPE html>
<html>
<head>
    <script>
        // Generate any random string and set it as the title.
        document.title = Math.random().toString(36).slice(2);
    </script>
</head>
<body>
  <p>hello</p>
</body>
</html>