summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/javaScriptTitle.html
blob: 31d1560886a5fceff453279b032b2f2cb7336370 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<html>
<head>
<script language="JavaScript">
function message()
{
  document.title = "Title from script javascript enabled";
}
</script>
<title>This is html title</title></head>

<body onload="message()"></body>
</html>