summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/windowed_npapi_plugin.html
blob: 1a0cc4b58406f958caeaf185697aff41d26a0743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<hmtl>
<body>
<embed	type="application/vnd.npapi-test" 
  height="300"
  width="100%"
  name="set_title_in_set_window_and_paint"
  id="1"
  mode="np_embed"/>
</body>

<script>
function PluginCreated() {
  window.document.title = "created";
  return;
}

function PluginShown() {
  window.document.title = "shown";
  return;
}
</script>

</hmtl>