git-svn-id: http://svn.openlayers.org/trunk/openlayers@11177 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
19 lines
604 B
HTML
19 lines
604 B
HTML
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
OpenLayers = {singleFile: true}; // just to make the test run faster
|
|
document.write('<scr'+'ipt src="../lib/OpenLayers.js"></scr'+'ipt>');
|
|
document.write('<scr'+'ipt src="bogus/foo-/OpenLayers.js"></scr'+'ipt>');
|
|
</script>
|
|
<script type="text/javascript">
|
|
function test_OpenLayers(t) {
|
|
t.plan(1);
|
|
t.eq(OpenLayers._getScriptLocation(), "../lib/",
|
|
"Script location correctly detected, and not fooled by other scripts.");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|