1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17

content / test / data / accessibility / html / title-changed.html [blame]

<!--
@BLINK-ALLOW:name=*
@WAIT-FOR:New Title
-->
<!DOCTYPE html>
<html>
<head>
  <title>Old Title</title>
</head>
<body>
<script>
setTimeout(function() {
  document.title = "New Title";
}, 100);
</script>
</body>
</html>