diff --git a/src/ol/control/Rotate.js b/src/ol/control/Rotate.js index fc20aed4d8..c4abc550c1 100644 --- a/src/ol/control/Rotate.js +++ b/src/ol/control/Rotate.js @@ -169,8 +169,6 @@ export function render(mapEvent) { this.element.classList.remove(CLASS_HIDDEN); } } - this.label_.style.msTransform = transform; - this.label_.style.webkitTransform = transform; this.label_.style.transform = transform; } this.rotation_ = rotation; diff --git a/types/dom.d.ts b/types/dom.d.ts index 8ae4e45c60..ab406a05b8 100644 --- a/types/dom.d.ts +++ b/types/dom.d.ts @@ -27,7 +27,3 @@ interface Element { msRequestFullscreen(): Promise; webkitRequestFullscreen(allowKeyboardInput?: number): Promise; } - -interface CSSStyleDeclaration { - msTransform: string | null; -}