From daef204f227fd50c4bdb99fcb28712b15201eef7 Mon Sep 17 00:00:00 2001 From: Johannes Odland Date: Thu, 26 Oct 2023 16:04:17 +0200 Subject: [PATCH] Fix name of css math invert class (#167) --- src/proxy-cssom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proxy-cssom.js b/src/proxy-cssom.js index 1129cc15..e47b541e 100644 --- a/src/proxy-cssom.js +++ b/src/proxy-cssom.js @@ -122,7 +122,7 @@ export function installCSSOM() { } }, - 'CSSMathNegate': class extends MathOperation { + 'CSSMathInvert': class extends MathOperation { constructor(values) { super([1, arguments[0]], 'invert', 'calc', ' / '); }