Jsdom: SVGGElement não está definido

Criado em 3 dez. 2019  ·  3Comentários  ·  Fonte: jsdom/jsdom

Eu acho que SVGGElement ( documentação MDN ) não é suportado em jsdom?

Informação básica:

  • Versão do Node.js: 10.150.
  • versão jsdom: 11.5.1

Estojo de reprodução mínima

const { JSDOM } = require("jsdom");

const options = {
  ... your options here ...
};
const dom = new JSDOM(`
  <svg>
    <g id="g"> 
  </svg>
`, options);

const g = dom.window.document.querySelector("#g");

if (g instanceof SVGGElement) { // throws "SVGGElement is not defined"
  console.log("ok");
}

Como um código semelhante se comporta em navegadores?

https://jsfiddle.net/p3ag4v85/

(confira no console e procure por ok )

Notas

Devo dizer que notei o bug quando testei meu código usando Jest, que está usando jsdom internamente. Aqui está o erro que recebi:

● should throw an Error if g element is not found

    expect(received).toThrowError(expected)

    Expected message: "group element not found"
    Received message: "SVGGElement is not defined"

          46 |         if (!(svgElement instanceof SVGSVGElement))
          47 |             throw new Error("svg element not found");
        > 48 |         if (!(groupElement instanceof SVGGElement))
             |                                       ^
          49 |             throw new Error("g element not found");
          50 |         this.groupElement = groupElement;
          51 |         this.groupBBoxWidth = 0;

          at new Lib (lib/js/index.js:48:39)
          at test/MyLib/constructor.test.js:86:15
          at Object.<anonymous> (node_modules/expect/build/toThrowMatchers.js:81:11)
          at Object.toThrowError (node_modules/expect/build/index.js:342:33)
          at Object.<anonymous> (test/MyLib/constructor.test.js:87:7)

      85 |     expect(
      86 |         () => new Lib({ svgIdentifier: "svg", groupIdentifier: "g" })
    > 87 |     ).toThrowError(new TypeError("group element not found"));
         |       ^
      88 | });
      89 | 

      at Object.<anonymous> (test/MyLib/constructor.test.js:87:7)
svg

Comentários muito úteis

Na verdade, parece que isso é apenas porque não suportamos o elemento SVG g . Nosso suporte SVG não é muito bom no momento.

Todos 3 comentários

SVGElement é suportado. No entanto, seu código está procurando SVGElement no Node.js global. Você precisa usar dom.window.SVGElement .

Sim. Isso sim é um bug. A especificação não parece ser implementada corretamente para grupos SVG.

<!DOCTYPE html>
<html>
    <body>
        <svg id="svg">
            <g id="group"></g>
        </svg>
        <script>
            "use strict";

            window.addEventListener("load", function() {
                const svg = document.getElementById("svg");
                const group = document.getElementById("group");

                console.dir(svg.constructor);   // ƒ SVGSVGElement()
                console.dir(group.constructor); // ƒ SVGGElement()
            });
        </script>
    </body>
</html>
"use strict";

const { JSDOM } = require("jsdom");

const dom = new JSDOM(`
    <svg id="svg">
        <g id="group"></g>
    </svg>
`);

const svg = dom.window.document.getElementById("svg");
const group = dom.window.document.getElementById("group");

console.log(svg.constructor);   // [Function: SVGSVGElement]
console.log(group.constructor); // [Function: SVGElement]

Repositório de reprodução do GitHub .

Na verdade, parece que isso é apenas porque não suportamos o elemento SVG g . Nosso suporte SVG não é muito bom no momento.

Esta página foi útil?
0 / 5 - 0 avaliações

Questões relacionadas

drewish picture drewish  ·  4Comentários

vsemozhetbyt picture vsemozhetbyt  ·  4Comentários

lehni picture lehni  ·  4Comentários

philipwalton picture philipwalton  ·  4Comentários

kilianc picture kilianc  ·  4Comentários