1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12

content / test / data / accessibility / event / document-title-change.html [blame]

<html>
    <head>
            <title>Before</title>
    </head>
    <body>
        <script type="application/javascript">
            function go() {
                document.title = "After"
            }
        </script>
    </body>
</html>