git-svn-id: http://svn.openlayers.org/trunk/openlayers@11177 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
20 lines
468 B
HTML
20 lines
468 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
var OpenLayers = {singleFile: true};
|
|
</script>
|
|
<script src="../lib/OpenLayers.js"></script>
|
|
<script type="text/javascript">
|
|
function test_OpenLayers(t) {
|
|
t.plan(1);
|
|
|
|
var script = document.getElementById("script");
|
|
|
|
t.eq(OpenLayers._getScriptLocation(), "../lib/", "Script location for single file build correctly detected.");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|