blob: 9d47cf30402f9bfc982b999f082db383b3e015ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<html>
<head>
<script type="text/javascript">
function SetSrc(src) {
plugin = document.getElementById('plugin');
plugin.src = src;
}
</script>
</head>
<body>
<button id="before" tabindex="0">Before</button>
<object id="plugin"
tabindex="0"
type="application/browser-plugin"
width="640"
height="480"
border="0px"></object>
<button id="after" tabindex="0">After</button>
</body>
</html>
|