summaryrefslogtreecommitdiffstatshomepage
path: root/includes/js/dijit/tests/layout/test_BorderContainer_nested.html
diff options
context:
space:
mode:
authorGravatar mensonge2008-11-14 15:39:19 +0000
committerGravatar mensonge2008-11-14 15:39:19 +0000
commit1c5685d68f1b73270fb814fe04cbb490eb90ba5f (patch)
tree3d3ada08a934b96fc31531f1327690d7edc6f766 /includes/js/dijit/tests/layout/test_BorderContainer_nested.html
parent104d59099e048688c4dbac37d72137006e396558 (diff)
downloadscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.gz
scuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.zip
Minor fix: Remove DOJO library (60Mo) replaced by link to Google CDN (online DOJO library)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@159 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'includes/js/dijit/tests/layout/test_BorderContainer_nested.html')
-rw-r--r--includes/js/dijit/tests/layout/test_BorderContainer_nested.html70
1 files changed, 0 insertions, 70 deletions
diff --git a/includes/js/dijit/tests/layout/test_BorderContainer_nested.html b/includes/js/dijit/tests/layout/test_BorderContainer_nested.html
deleted file mode 100644
index 72bdf53..0000000
--- a/includes/js/dijit/tests/layout/test_BorderContainer_nested.html
+++ /dev/null
@@ -1,70 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
-<html>
-<head>
- <title>dijit.layout.BorderContainer Test</title>
-
- <style type="text/css">
- @import "../../../dojo/resources/dojo.css";
- @import "../css/dijitTests.css";
- </style>
-
- <script type="text/javascript" src="../../../dojo/dojo.js"
- djConfig="isDebug: true, parseOnLoad: true"></script>
- <script type="text/javascript" src="../_testCommon.js"></script>
-
- <script type="text/javascript">
- dojo.require("dijit.layout.BorderContainer");
- dojo.require("dijit.layout.ContentPane");
- dojo.require("dijit.form.FilteringSelect");
- </script>
-</head>
-<body>
-
- <h2 class="testTitle">dijit.layout.BorderContainer tests</h2>
- <p>Basic layout</p>
-
- <div dojoType="dijit.layout.BorderContainer"
- style="border: 2px solid black; width: 90%; height: 500px; padding: 10px;">
- <div dojoType="dijit.layout.ContentPane" region="left" style="background-color: #acb386; width: 100px;">
- left
- </div>
- <div dojoType="dijit.layout.ContentPane" region="right" style="background-color: #acb386; width: 100px;">
- right
- </div>
- <div dojoType="dijit.layout.ContentPane" region="top" style="background-color: #b39b86; height: 100px;">
- top bar
- </div>
- <div dojoType="dijit.layout.ContentPane" region="bottom" style="background-color: #b39b86; height: 100px;">
- bottom bar
- </div>
- <div dojoType="dijit.layout.ContentPane" region="center" style="background-color: #f5ffbf; padding: 0px;">
-
- <div dojoType="dijit.layout.BorderContainer" design="sidebar"
- style="border: 2px solid black; height: 300px;">
- <div dojoType="dijit.layout.ContentPane" region="left" style="background-color: #acb386; width: 100px;">
- left
- </div>
- <div dojoType="dijit.layout.ContentPane" region="right" style="background-color: #acb386; width: 100px;">
- right
- </div>
- <div dojoType="dijit.layout.ContentPane" region="top" style="background-color: #b39b86; height: 100px;">
- top bar
- </div>
- <div dojoType="dijit.layout.ContentPane" region="bottom" style="background-color: #b39b86; height: 100px;">
- bottom bar
- </div>
- <div dojoType="dijit.layout.ContentPane" region="center" style="background-color: #f5ffbf; padding: 10px;">
- main panel with <a href="http://www.dojotoolkit.org/">a link</a>.<br />
- (to check we're copying children around properly).<br />
- <select dojoType="dijit.form.FilteringSelect">
- <option value="1">foo</option>
- <option value="2">bar</option>
- <option value="3">baz</option>
- </select>
- Here's some text that comes AFTER the combo box.
- </div>
- </div>
- </div>
- </div>
-</body>
-</html>