Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
[core] enable query tests for 8007
Browse files Browse the repository at this point in the history
  • Loading branch information
ivovandongen committed Apr 18, 2017
1 parent c60bb53 commit 0c8f1fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mapbox-gl-js
Submodule mapbox-gl-js updated 54 files
+39 −0 CHANGELOG.md
+1 −0 _config.mb-pages.yml
+3 −0 docs/_data/plugins.yml
+10 −7 docs/_layouts/default.html
+1 −0 docs/_layouts/pages.html
+43 −45 docs/_posts/examples/3400-01-02-cluster.html
+2 −2 docs/_posts/examples/3400-01-25-mapbox-gl-draw.html
+4 −4 docs/_theme/index.hbs
+1 −1 docs/_theme/note.hbs
+1 −1 docs/_theme/section.hbs
+2 −2 docs/_theme/section_list.hbs
+15 −1 docs/style-spec/_generate/index.html
+1 −1 package.json
+1 −1 src/shaders/fill_outline.fragment.glsl
+1 −1 src/shaders/fill_outline_pattern.fragment.glsl
+3 −0 src/source/geojson_worker_source.js
+9 −2 src/source/geojson_wrapper.js
+1 −1 src/source/load_tilejson.js
+17 −2 src/source/raster_tile_source.js
+4 −0 src/source/source_cache.js
+39 −0 src/source/tile_bounds.js
+15 −1 src/source/vector_tile_source.js
+8 −2 src/style-spec/CHANGELOG.md
+0 −0 src/style-spec/bin/gl-style-composite
+9 −0 src/style-spec/composite.js
+1 −1 src/style-spec/migrate/v7.js
+1 −1 src/style-spec/migrate/v8.js
+1 −1 src/style-spec/package.json
+6 −2 src/style-spec/reference/v8.json
+5 −2 src/style/style.js
+95 −98 src/ui/camera.js
+7 −0 src/ui/handler/box_zoom.js
+7 −6 src/ui/map.js
+2 −1 src/util/util.js
+1 −4 test/integration/query-tests/circle-radius/property-function/style.json
+1 −4 test/integration/query-tests/circle-radius/zoom-and-property-function/style.json
+1 −4 test/integration/query-tests/line-gap-width/property-function/style.json
+6 −6 test/integration/query-tests/line-offset/property-function/expected.json
+5 −8 test/integration/query-tests/line-offset/property-function/style.json
+33 −0 test/integration/query-tests/regressions/mapbox-gl-js#4494/expected.json
+47 −0 test/integration/query-tests/regressions/mapbox-gl-js#4494/style.json
+ test/integration/render-tests/fill-outline-color/fill/expected.png
+55 −0 test/integration/render-tests/fill-outline-color/fill/style.json
+1 −1 test/integration/render-tests/regressions/mapbox-gl-js#4235/style.json
+ test/integration/render-tests/regressions/mapbox-gl-js#4564/expected.png
+43 −0 test/integration/render-tests/regressions/mapbox-gl-js#4564/style.json
+ test/integration/render-tests/regressions/mapbox-gl-js#4573/expected.png
+34 −0 test/integration/render-tests/regressions/mapbox-gl-js#4573/style.json
+3 −3 test/integration/render-tests/regressions/mapbox-gl-native#7792/style.json
+65 −0 test/unit/source/raster_tile_source.test.js
+24 −0 test/unit/source/source_cache.test.js
+35 −0 test/unit/source/vector_tile_source.test.js
+31 −0 test/unit/style-spec/composite.test.js
+39 −1 test/unit/ui/camera.test.js

0 comments on commit 0c8f1fc

Please sign in to comment.