2010-09-02 23:23:53 +08:00
|
|
|
<!DOCTYPE html>
|
2010-09-02 21:14:25 +08:00
|
|
|
<html>
|
|
|
|
<head>
|
2013-10-23 21:15:54 +08:00
|
|
|
<meta charset="utf-8">
|
2013-10-29 18:36:42 +08:00
|
|
|
<title>Leaflet Spec Runner</title>
|
2013-04-04 06:01:32 +08:00
|
|
|
<link rel="stylesheet" type="text/css" href="../node_modules/mocha/mocha.css">
|
2014-08-01 13:43:14 +08:00
|
|
|
<link rel="stylesheet" type="text/css" href="../dist/leaflet.css">
|
2013-03-02 05:49:20 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
2013-10-23 21:15:54 +08:00
|
|
|
<div id="mocha"></div>
|
|
|
|
<script src="expect.js"></script>
|
|
|
|
<script type="text/javascript" src="../node_modules/mocha/mocha.js"></script>
|
2013-09-09 16:47:09 +08:00
|
|
|
<script type="text/javascript" src="../node_modules/happen/happen.js"></script>
|
2016-03-17 21:46:15 +08:00
|
|
|
<script type="text/javascript" src="../node_modules/prosthetic-hand/dist/prosthetic-hand.js"></script>
|
2013-03-02 05:49:20 +08:00
|
|
|
<script type="text/javascript" src="sinon.js"></script>
|
2012-02-26 00:57:28 +08:00
|
|
|
|
2010-09-02 23:23:53 +08:00
|
|
|
<!-- source files -->
|
2016-03-17 21:46:15 +08:00
|
|
|
<script>
|
|
|
|
// Trick Leaflet into believing we have a touchscreen (for Chrome)
|
|
|
|
if (window.Touch) { window.ontouchstart = function(){} };
|
|
|
|
</script>
|
ES6 modules & Rollup (#4989)
* WIP ES6 modules & rollup
* WIP ES6 modules & rollup 2
* WIP ES6 modules & rollup 3
* WIP ES6 modules Browser
* WIP ES6 module fixes
* WIP ES6 modules: simpler browser exports
* WIP ES6: refactor CRS/Projection modules, CRS obj -> CRS.Base
* get rid of unnecessary index.js
* WIP ES6 modules, dom events and stuff
* Make linter happy, rollup to dist/
* revert to CRS namespace/class for now
* WIP rollup: export more stuff
* export controls
* rollup: export Layer
* rollup: export DomEvent
* rollup: export more layer types
* rollup: export Popup/Tooltip
* WIP: ES6-ify marker, icon, domutil, draggable.
* ES6-ify gridlayer, tilelayer.
* ES6-ify: Tweak imports-exports, code is now runnable!!
* ES6-ify: Fix scope in some DomUtils
* ES6-ify: Path, fix Popup
* ES6-ify: Lint & cleanup
* ES6-ify map handlers, more linting
* ES6-ify: Icon.Default namespacing
* ES6-ify: Renderers, CircleMarker
* ES6-ify: Circle, Polyline, LineUtil
* ES6-ify: Polygon, Rectangle, LineUtil, PolyUtil, linting
* ES6-ify: SVG.VML
* ES6-ify: DomEvent.Pointer, DomEvent.DoubleTap
* ES6-ify: Linting, make Karma play nice with Rollup
* ES6-ify: More work on fixing bits breaking some unit tests.
* ES6-ify: rollup the version number, fiddled with build scripts
* ES6-ify: Fiddle with test scripts
* ES6-ify: cleanup (refs to global L, imports from (DOM)Util), prevent cyclic loop on Map imports
* ES6-ify: More cleanup of (DOM)Util/Browser/DomEvent imports
* ES6ify: Use rollup's "legacy" option for ES3 (IE8) builds
* ES6-ify: Clean up build scripts, fix CONTRIBUTING.md instructions
* Typo
* ES6-ify: minor fixes and lefovers after rebasing on top of 1.0.2
* ES6-ify: upgrade to rollup 0.38 for proper IE8 builds, fix L.SVG.VML
* Make linter happy.
* ES6: Fixing typos and sxrew-ups after big rebase
* Fix symlink for debugging scripts
* ES6: Cleanup old build scripts
* ES6-ify: Update build system to include git rev in L.version
* ES6-ify: re-enable unit tests replacing L.Path with L.Polyline
* Export Path
* ES6ify: cleanup old banner file
* ES6-ify: whitespace in var declarations
* ES6-ify: Export toTransformation as L.transformation
* ES6-ify: cleanup L.transform exports
* ES6-ify: "import Util" in Transformation and SVG.VML
2017-01-30 18:35:16 +08:00
|
|
|
<!-- <script type="text/javascript" src="../build/deps.js"></script> -->
|
2012-02-26 00:57:28 +08:00
|
|
|
|
2012-06-30 18:13:02 +08:00
|
|
|
<script type="text/javascript" src="../debug/leaflet-include.js"></script>
|
2012-02-26 00:57:28 +08:00
|
|
|
|
2013-10-23 21:15:54 +08:00
|
|
|
<script>
|
|
|
|
mocha.setup({
|
|
|
|
ui: 'bdd',
|
|
|
|
ignoreLeaks: true
|
|
|
|
});
|
|
|
|
</script>
|
2010-09-15 21:46:27 +08:00
|
|
|
|
2010-09-02 23:23:53 +08:00
|
|
|
<!-- spec files -->
|
2012-02-26 00:57:28 +08:00
|
|
|
|
2012-06-30 18:13:02 +08:00
|
|
|
<script type="text/javascript" src="suites/SpecHelper.js"></script>
|
2012-02-26 00:57:28 +08:00
|
|
|
|
2012-10-13 03:13:55 +08:00
|
|
|
<!-- /control -->
|
2014-11-14 02:49:43 +08:00
|
|
|
<script type="text/javascript" src="suites/control/ControlSpec.js"></script>
|
2012-10-13 03:13:55 +08:00
|
|
|
<script type="text/javascript" src="suites/control/Control.LayersSpec.js"></script>
|
2012-10-13 03:49:12 +08:00
|
|
|
<script type="text/javascript" src="suites/control/Control.ScaleSpec.js"></script>
|
2013-02-20 00:21:01 +08:00
|
|
|
<script type="text/javascript" src="suites/control/Control.AttributionSpec.js"></script>
|
2012-10-13 03:13:55 +08:00
|
|
|
|
2012-06-30 18:13:02 +08:00
|
|
|
<!-- /core -->
|
|
|
|
<script type="text/javascript" src="suites/core/UtilSpec.js"></script>
|
|
|
|
<script type="text/javascript" src="suites/core/ClassSpec.js"></script>
|
|
|
|
<script type="text/javascript" src="suites/core/EventsSpec.js"></script>
|
2010-09-02 21:14:25 +08:00
|
|
|
|
2012-06-30 18:13:02 +08:00
|
|
|
<!-- /geometry -->
|
|
|
|
<script type="text/javascript" src="suites/geometry/PointSpec.js"></script>
|
|
|
|
<script type="text/javascript" src="suites/geometry/BoundsSpec.js"></script>
|
|
|
|
<script type="text/javascript" src="suites/geometry/TransformationSpec.js"></script>
|
2013-02-20 00:21:01 +08:00
|
|
|
<script type="text/javascript" src="suites/geometry/LineUtilSpec.js"></script>
|
|
|
|
<script type="text/javascript" src="suites/geometry/PolyUtilSpec.js"></script>
|
2010-09-07 00:06:38 +08:00
|
|
|
|
2012-06-30 18:13:02 +08:00
|
|
|
<!-- /geo -->
|
|
|
|
<script type="text/javascript" src="suites/geo/LatLngSpec.js"></script>
|
|
|
|
<script type="text/javascript" src="suites/geo/LatLngBoundsSpec.js"></script>
|
|
|
|
<script type="text/javascript" src="suites/geo/ProjectionSpec.js"></script>
|
2010-09-07 19:27:44 +08:00
|
|
|
|
2012-06-30 18:13:02 +08:00
|
|
|
<!-- /dom -->
|
|
|
|
<script type="text/javascript" src="suites/dom/DomEventSpec.js"></script>
|
|
|
|
<script type="text/javascript" src="suites/dom/DomUtilSpec.js"></script>
|
2010-09-07 19:27:44 +08:00
|
|
|
|
2012-06-30 18:13:02 +08:00
|
|
|
<!-- /layer -->
|
2013-02-08 09:44:28 +08:00
|
|
|
<script type="text/javascript" src="suites/layer/FeatureGroupSpec.js"></script>
|
2013-02-27 06:54:58 +08:00
|
|
|
<script type="text/javascript" src="suites/layer/GeoJSONSpec.js"></script>
|
2014-11-13 02:53:26 +08:00
|
|
|
<script type="text/javascript" src="suites/layer/ImageOverlaySpec.js"></script>
|
2013-02-28 06:10:19 +08:00
|
|
|
<script type="text/javascript" src="suites/layer/LayerGroupSpec.js"></script>
|
2013-04-20 21:58:42 +08:00
|
|
|
<script type="text/javascript" src="suites/layer/PopupSpec.js"></script>
|
2016-07-08 19:48:32 +08:00
|
|
|
<script type="text/javascript" src="suites/layer/TooltipSpec.js"></script>
|
2013-02-08 09:44:28 +08:00
|
|
|
|
2013-12-02 23:44:03 +08:00
|
|
|
<!-- /layer/tile -->
|
|
|
|
<script type="text/javascript" src="suites/layer/tile/GridLayerSpec.js"></script>
|
|
|
|
<script type="text/javascript" src="suites/layer/tile/TileLayerSpec.js"></script>
|
|
|
|
|
2013-06-12 11:55:03 +08:00
|
|
|
<!-- /layer/marker/ -->
|
|
|
|
<script type="text/javascript" src="suites/layer/marker/MarkerSpec.js"></script>
|
2016-08-22 22:40:03 +08:00
|
|
|
<script type="text/javascript" src="suites/layer/marker/Icon.DefaultSpec.js"></script>
|
2013-06-12 11:55:03 +08:00
|
|
|
|
2013-02-08 09:44:28 +08:00
|
|
|
<!-- /layer/vector/ -->
|
2012-10-15 16:39:07 +08:00
|
|
|
<script type="text/javascript" src="suites/layer/vector/CircleSpec.js"></script>
|
2013-02-04 04:49:37 +08:00
|
|
|
<script type="text/javascript" src="suites/layer/vector/CircleMarkerSpec.js"></script>
|
2014-11-06 07:13:28 +08:00
|
|
|
<script type="text/javascript" src="suites/layer/vector/PathSpec.js"></script>
|
2013-02-20 06:03:37 +08:00
|
|
|
<script type="text/javascript" src="suites/layer/vector/PolygonSpec.js"></script>
|
|
|
|
<script type="text/javascript" src="suites/layer/vector/PolylineSpec.js"></script>
|
2013-02-04 04:49:37 +08:00
|
|
|
<script type="text/javascript" src="suites/layer/vector/PolylineGeometrySpec.js"></script>
|
2015-10-10 00:25:59 +08:00
|
|
|
<script type="text/javascript" src="suites/layer/vector/CanvasSpec.js"></script>
|
2012-02-26 00:57:28 +08:00
|
|
|
|
2012-06-30 18:13:02 +08:00
|
|
|
<!-- /map -->
|
|
|
|
<script type="text/javascript" src="suites/map/MapSpec.js"></script>
|
|
|
|
|
2013-08-18 09:18:21 +08:00
|
|
|
<!-- /map/handler -->
|
|
|
|
<script type="text/javascript" src="suites/map/handler/Map.DragSpec.js"></script>
|
2016-03-17 21:46:15 +08:00
|
|
|
<script type="text/javascript" src="suites/map/handler/Map.TouchZoomSpec.js"></script>
|
2013-08-18 09:18:21 +08:00
|
|
|
|
2015-09-14 22:13:46 +08:00
|
|
|
<!-- /geo/crs -->
|
|
|
|
<script type="text/javascript" src="suites/geo/CRSSpec.js"></script>
|
|
|
|
|
2013-10-23 21:15:54 +08:00
|
|
|
<script>
|
|
|
|
(window.mochaPhantomJS || window.mocha).run();
|
|
|
|
</script>
|
2010-09-02 21:14:25 +08:00
|
|
|
</body>
|
2012-10-13 03:13:55 +08:00
|
|
|
</html>
|