diff options
author | Chris Schlaeger <chris@linux.com> | 2015-10-17 21:36:38 +0200 |
---|---|---|
committer | Chris Schlaeger <chris@linux.com> | 2015-10-17 21:36:38 +0200 |
commit | e30f267181d990947e67909de4809fa941698c85 (patch) | |
tree | 46e9f94c2b3699ed378963b420b8a8d361286ea1 /misc/openlayers/tests/manual/memory/VML-2170.html | |
parent | e763ceb183f389fcd314a4a6a712d87c9d4cdb32 (diff) | |
download | postrunner-e30f267181d990947e67909de4809fa941698c85.zip |
Upgrading openlayers to 3.x
Diffstat (limited to 'misc/openlayers/tests/manual/memory/VML-2170.html')
-rw-r--r-- | misc/openlayers/tests/manual/memory/VML-2170.html | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/misc/openlayers/tests/manual/memory/VML-2170.html b/misc/openlayers/tests/manual/memory/VML-2170.html deleted file mode 100644 index 2f72300..0000000 --- a/misc/openlayers/tests/manual/memory/VML-2170.html +++ /dev/null @@ -1,49 +0,0 @@ -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <title>Memory Test - Renderer.VML - onselectstart</title> - <style type="text/css"> - body { - font-size: 0.8em; - } - p { - padding-top: 1em; - } - #map { - width: 256px; - height: 256px; - border: 1px solid black; - } - </style> - - <script src="../../../lib/Firebug/firebug.js"></script> - <script src="../../../lib/OpenLayers.js"></script> - <script type="text/javascript"> - var map; - var layer; - - function init(){ - map = new OpenLayers.Map('map'); - - layer = new OpenLayers.Layer.Vector("Test-VML", {renderers:['VML']}); - map.addLayers([layer]); - - window.setTimeout(function() { - layer.redraw(); - window.alert("Setup - hit STOP in the leak detector now"); - }, 100); - } - </script> - </head> - <body onload="init()"> - <h1 id="title">Memory Test - Renderer.VML - onselectstart</h1> - <pre id="status"></pre> - <div id="map"></div> - <p> - This test is a memory leak test for usage of "onselectstart" event handler in Renderer.VML - </p> - <p> - Run this test in IE6/7 with <a href="http://blogs.msdn.com/gpde/pages/javascript-memory-leak-detector-v2.aspx">JavaScript Memory Leak Detector v2</a> - and watch it identify a leak unless this is fixed. - </p> - </body> -</html> |