~ubuntu-branches/ubuntu/quantal/gnash/quantal-proposed

« back to all changes in this revision

Viewing changes to plugin/test.html

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2008-10-14 16:06:54 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20081014160654-0anbl2mi098aee2h
Tags: 0.8.4-0ubuntu1
* LP: #84526 - Gnash menu launcher (/usr/share/applications/gnash.desktop
  file) doesn't start any application, also gnash isn't asociated with SWF
  mimetype; we dont show gnash in the .desktop launcher; we add
  NoDisplay=true, add a GenericName and Comment for the sake of
  completeness. Also we add the proper MimeType value, remove Encoding,
  don't use absolute paths for icon and exec and dont use specific icon
  file format suffix.
  - update debian/gnash.desktop

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<HTML>
2
 
<HEAD>
3
 
<TITLE>Simple Plug-in Test</TITLE>
4
 
</HEAD>
5
 
<BODY>
6
 
 
7
 
<center>
8
 
<h1> XPConnect Scriptable Sample Plug-in </h1>
9
 
</center>
10
 
 
11
 
This page contains a testcase which demonstrates the work of scriptable 
12
 
plug-in with Mozilla. This example plug-in has no native GUI and does not 
13
 
draw anything in the plugin window. Clicking on the button will result in calling 
14
 
native plugin method from JavaScript. Show Version will instruct the plug-in 
15
 
to retrieve the Mozilla user agent string and return it to JavaScript to show
16
 
in the alert box.
17
 
 
18
 
<br><br>
19
 
 
20
 
<center>
21
 
 
22
 
<embed type="application/simple-plugin" width=1 height=1 hidden="true"><br>
23
 
 
24
 
<script>
25
 
var embed = document.embeds[0];
26
 
 
27
 
function ShowVersion()
28
 
{
29
 
  alert(embed.version);
30
 
}
31
 
</script>
32
 
 
33
 
<br>
34
 
<form name="formname">
35
 
<input type=button value="Show Version" onclick='ShowVersion()'>
36
 
</form>
37
 
 
38
 
</center>
39
 
 
40
 
</BODY>
41
 
</HTML>