source: Dev/branches/rest-dojo-ui/client/dojox/embed/tests/object.html @ 256

Last change on this file since 256 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 1019 bytes
Line 
1<html>
2        <head>
3                <title>dojox.embed.Object Test</title>
4                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5                <style type="text/css">
6                        @import "../../../dojo/resources/dojo.css";
7                        @import "../../../dijit/tests/css/dijitTests.css";
8                        #flashTest {
9                                border: 1px solid blue;
10                                width: 400px;
11                                height: 500px;
12                        }
13                </style>
14                <script type="text/javascript" src="../../../dojo/dojo.js" djConfig="parseOnLoad: true, isDebug: true"></script>
15                <script type="text/javascript">
16                        dojo.require("dojox.embed.Object");
17                        dojo.require("dojo.parser");
18                </script>
19        </head>
20        <body>
21                <h1>dojox.embed.Object</h1>
22                <p>
23                This is a test for the embedder widget.
24                </p>
25                <div dojoType="dojox.embed.Object" src="resources/sample.3gp" width="176" height="144"></div>
26                <div dojoType="dojox.embed.Object" src="resources/hfp.swf" style="float:right;width:100px;height:100px;border:1px solid black;"></div>
27                <div id="flashTest" dojoType="dojox.embed.Object" src="resources/hfp.swf"></div>
28        </body>
29</html>
Note: See TracBrowser for help on using the repository browser.