mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-02 14:30:43 +00:00
NOT PART OF BUILD. Test files for ActiveX control for hosting Netscape plugins in IE
This commit is contained in:
parent
ec07703542
commit
e5f628e33a
@ -0,0 +1,14 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Reference test 3 for the plugin</TITLE>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<p>Run this in NS 4.x to compare behaviours!</p>
|
||||
<EMBED
|
||||
ID="PluginHostCtrl"
|
||||
width="500" height="300"
|
||||
TYPE="video/quicktime"
|
||||
SRC="http://www.southparkstudios.com/down/download.html?file=/media/video/101/sp101_baby.mov"
|
||||
/>
|
||||
</BODY>
|
||||
</HTML>
|
11
embedding/browser/activex/src/pluginhostctrl/tests/test1.htm
Normal file
11
embedding/browser/activex/src/pluginhostctrl/tests/test1.htm
Normal file
@ -0,0 +1,11 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Test 1 for the plugin</TITLE>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<P>Test for default plugin.</P>
|
||||
<OBJECT ID="PluginHostCtrl" CLASSID="CLSID:DBB2DE32-61F1-4F7F-BEB8-A37F5BC24EE2" width="500" height="300">
|
||||
<PARAM name="type" value="*"/>
|
||||
</OBJECT>
|
||||
</BODY>
|
||||
</HTML>
|
12
embedding/browser/activex/src/pluginhostctrl/tests/test2.htm
Normal file
12
embedding/browser/activex/src/pluginhostctrl/tests/test2.htm
Normal file
@ -0,0 +1,12 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Test 2 for the plugin</TITLE>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<p>Test for Shockwave plugin.</p>
|
||||
<OBJECT ID="PluginHostCtrl" CLASSID="CLSID:DBB2DE32-61F1-4F7F-BEB8-A37F5BC24EE2" width="500" height="300">
|
||||
<PARAM name="type" value="application/x-shockwave-flash"/>
|
||||
<PARAM name="src" value="http://www.southparkstudios.com/timmygame/timmy_game.swf"/>
|
||||
</OBJECT>
|
||||
</BODY>
|
||||
</HTML>
|
12
embedding/browser/activex/src/pluginhostctrl/tests/test3.htm
Normal file
12
embedding/browser/activex/src/pluginhostctrl/tests/test3.htm
Normal file
@ -0,0 +1,12 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Test 3 for the plugin</TITLE>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<P>Test for QuickTime plugin.</P>
|
||||
<OBJECT ID="PluginHostCtrl" CLASSID="CLSID:DBB2DE32-61F1-4F7F-BEB8-A37F5BC24EE2" width="500" height="300">
|
||||
<PARAM name="type" value="video/quicktime"/>
|
||||
<PARAM name="src" value="http://www.southparkstudios.com/down/download.html?file=/media/video/101/sp101_baby.mov"/>
|
||||
</OBJECT>
|
||||
</BODY>
|
||||
</HTML>
|
12
embedding/browser/activex/src/pluginhostctrl/tests/test4.htm
Normal file
12
embedding/browser/activex/src/pluginhostctrl/tests/test4.htm
Normal file
@ -0,0 +1,12 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Test 4 for the plugin</TITLE>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<P>Test for the Adobe Acrobat plugin</p>
|
||||
<OBJECT ID="PluginHostCtrl" CLASSID="CLSID:DBB2DE32-61F1-4F7F-BEB8-A37F5BC24EE2" width="80%" height="50%">
|
||||
<PARAM name="src" value="http://www.mozilla.org/js/language/Edition4.pdf"/>
|
||||
</OBJECT>
|
||||
</BODY>
|
||||
</HTML>
|
||||
<html>
|
15
embedding/browser/activex/src/pluginhostctrl/tests/test5.htm
Normal file
15
embedding/browser/activex/src/pluginhostctrl/tests/test5.htm
Normal file
@ -0,0 +1,15 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Test 5 for the plugin</TITLE>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<p>This page tests what happens when the plugin is fed a duff MIME type.
|
||||
It should show the default plugin. Clicking on the plugin should take you
|
||||
to http://www.mozilla.org which is where the "pluginspage" parameter points.</p>
|
||||
<OBJECT ID="PluginHostCtrl" CLASSID="CLSID:DBB2DE32-61F1-4F7F-BEB8-A37F5BC24EE2" width="500" height="300">
|
||||
<PARAM name="type" value="foo/bar"/>
|
||||
<PARAM name="pluginspage" value="http://www.mozilla.org"/>
|
||||
</OBJECT>
|
||||
</BODY>
|
||||
</HTML>
|
||||
<html>
|
11
embedding/browser/activex/src/pluginhostctrl/tests/test6.htm
Normal file
11
embedding/browser/activex/src/pluginhostctrl/tests/test6.htm
Normal file
@ -0,0 +1,11 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Test 6 for the plugin</TITLE>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<p>This test (for Shockwave plugin) does not specify the content type. The control must create the right plugin using the content type of the source data.</p>
|
||||
<OBJECT ID="PluginHostCtrl" CLASSID="CLSID:DBB2DE32-61F1-4F7F-BEB8-A37F5BC24EE2" width="500" height="300">
|
||||
<PARAM name="src" value="http://www.southparkstudios.com/timmygame/timmy_game.swf"/>
|
||||
</OBJECT>
|
||||
</BODY>
|
||||
</HTML>
|
14
embedding/browser/activex/src/pluginhostctrl/tests/test7.htm
Normal file
14
embedding/browser/activex/src/pluginhostctrl/tests/test7.htm
Normal file
@ -0,0 +1,14 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Test 7 for the plugin</TITLE>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<p>This page contains several plugins of the same type.</p>
|
||||
<OBJECT ID="PluginHostCtrl" CLASSID="CLSID:DBB2DE32-61F1-4F7F-BEB8-A37F5BC24EE2" width="500" height="300">
|
||||
<PARAM name="src" value="http://www.southparkstudios.com/timmygame/timmy_game.swf"/>
|
||||
</OBJECT>
|
||||
<OBJECT ID="PluginHostCtrl2" CLASSID="CLSID:DBB2DE32-61F1-4F7F-BEB8-A37F5BC24EE2" width="500" height="300">
|
||||
<PARAM name="src" value="http://www.southparkstudios.com/timmygame/timmy_game.swf"/>
|
||||
</OBJECT>
|
||||
</BODY>
|
||||
</HTML>
|
16
embedding/browser/activex/src/pluginhostctrl/tests/test8.htm
Normal file
16
embedding/browser/activex/src/pluginhostctrl/tests/test8.htm
Normal file
@ -0,0 +1,16 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Test 8 for the plugin</TITLE>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<p>This page contains several plugins of a different kind.</p>
|
||||
<OBJECT ID="PluginHostCtrl" CLASSID="CLSID:DBB2DE32-61F1-4F7F-BEB8-A37F5BC24EE2" width="500" height="300">
|
||||
<PARAM name="type" value="video/quicktime"/>
|
||||
<PARAM name="src" value="http://www.southparkstudios.com/down/download.html?file=/media/video/101/sp101_baby.mov"/>
|
||||
</OBJECT>
|
||||
<OBJECT ID="PluginHostCtrl2" CLASSID="CLSID:DBB2DE32-61F1-4F7F-BEB8-A37F5BC24EE2" width="500" height="300">
|
||||
<PARAM name="type" value="application/x-shockwave-flash"/>
|
||||
<PARAM name="src" value="http://www.southparkstudios.com/timmygame/timmy_game.swf"/>
|
||||
</OBJECT>
|
||||
</BODY>
|
||||
</HTML>
|
15
embedding/browser/activex/src/pluginhostctrl/tests/test9.htm
Normal file
15
embedding/browser/activex/src/pluginhostctrl/tests/test9.htm
Normal file
@ -0,0 +1,15 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Test 9 for the plugin</TITLE>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<p>This page passes a custom parameter "LOOP" through to the quicktime plugin so
|
||||
it plays the clip in a continuous loop.</p>
|
||||
<OBJECT ID="PluginHostCtrl" CLASSID="CLSID:DBB2DE32-61F1-4F7F-BEB8-A37F5BC24EE2" width="500" height="300">
|
||||
<PARAM name="type" value="video/quicktime"/>
|
||||
<PARAM name="src" value="http://www.southparkstudios.com/down/download.html?file=/media/video/101/sp101_baby.mov"/>
|
||||
<!-- Custom argument -->
|
||||
<PARAM name="loop" value="true"/>
|
||||
</OBJECT>
|
||||
</BODY>
|
||||
</HTML>
|
Loading…
x
Reference in New Issue
Block a user