Skip to content

Commit a9da031

Browse files
committed
Revert "extend choropleth tests to include translate3d transform (#5525)"
This reverts commit c437006.
1 parent 344fb91 commit a9da031

File tree

1 file changed

+9
-14
lines changed

1 file changed

+9
-14
lines changed

test/jasmine/tests/choropleth_test.js

+9-14
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ describe('Test choropleth hover:', function() {
167167

168168
function run(hasCssTransform, pos, fig, content, style) {
169169
gd = createGraphDiv();
170+
var scale = 1;
170171

171172
style = style || {
172173
bgcolor: 'rgb(68, 68, 68)',
@@ -176,8 +177,14 @@ describe('Test choropleth hover:', function() {
176177
fontFamily: 'Arial'
177178
};
178179

179-
function assertHoverLabel(posX, posY) {
180-
mouseEvent('mousemove', posX, posY);
180+
return Plotly.newPlot(gd, fig)
181+
.then(function() {
182+
if(hasCssTransform) {
183+
scale = 0.5;
184+
transformPlot(gd, 'translate(-25%, -25%) scale(0.5)');
185+
}
186+
187+
mouseEvent('mousemove', scale * pos[0], scale * pos[1]);
181188
assertHoverLabelContent({
182189
nums: content[0],
183190
name: content[1]
@@ -186,18 +193,6 @@ describe('Test choropleth hover:', function() {
186193
d3Select('g.hovertext'),
187194
style
188195
);
189-
}
190-
191-
return Plotly.newPlot(gd, fig)
192-
.then(function() {
193-
if(hasCssTransform) {
194-
transformPlot(gd, 'translate3d(10px, 10px, 0) scale(1)');
195-
assertHoverLabel(pos[0] + 10, pos[1] + 10);
196-
transformPlot(gd, 'translate(-25%, -25%) scale(0.5)');
197-
assertHoverLabel(0.5 * pos[0], 0.5 * pos[1]);
198-
} else {
199-
assertHoverLabel(pos[0], pos[1]);
200-
}
201196
});
202197
}
203198

0 commit comments

Comments
 (0)