Use other edge and outside coordinates

This avoids a failing test due to anti-aliasing artifacts in Safari.
This commit is contained in:
ahocevar
2013-04-23 12:40:15 +02:00
parent 7cb38f69d5
commit 2e88ca6905

View File

@@ -321,9 +321,9 @@
var cases = [{
msg: "center of point", x: -100, y: 0, id: layer.features[0].id
}, {
msg: "edge of point", x: -103, y: 3, id: layer.features[0].id
msg: "edge of point", x: -106, y: 0, id: layer.features[0].id
}, {
msg: "outside point", x: -110, y: 3, id: null
msg: "outside point", x: -110, y: 0, id: null
}, {
msg: "center of line", x: 0, y: 0, id: layer.features[1].id
}, {