1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
/*
* Bug 1864564 - Override esri._css.names containing -moz-prefixed css rules names
* Webcompat issue #129144 - https://github.com/webcompat/web-bugs/issues/129144
*
* Esri library is applying -moz-transform to maps built with it, based on UA detection.
* Since support for -moz-transform has been removed in
* https://bugzilla.mozilla.org/show_bug.cgi?id=1855763, this results
* in maps partially or incorrectly displayed. Overriding esri._css.names
* containing -moz-prefixed css properties to their unprefixed versions
* fixes the issues.
*/
/* globals exportFunction, cloneInto */
console.info(
"Overriding esri._css.names for compatibility reasons. See https://bugzilla.mozilla.org/show_bug.cgi?id=1864564 for details."
);
const transformNames = {
transition: "transition",
transform: "transform",
transformName: "transform",
origin: "transformOrigin",
endEvent: "transitionend",
};
let esriGlobal;
Object.defineProperty(window.wrappedJSObject, "esri", {
get: exportFunction(function () {
if ("_css" in esriGlobal && "names" in esriGlobal._css) {
esriGlobal._css.names = cloneInto(transformNames, esriGlobal);
}
return esriGlobal;
}, window),
set: exportFunction(function (value) {
esriGlobal = value;
}, window),
});
|