.svg から取得したキャンバスに画像を描画する必要があります。現在、次のコードを使用しています。
active_toolbutton = query("#${event.target.id}").clone(false);
active_toolbutton.width = 100;
active_toolbutton.height = 100;
context.drawImageScaled(active_toolbutton, placeX, placeY,
active_toolbutton.width, active_toolbutton.height);
これは Chrome では機能しますが、Firefox では機能しません。より良い方法はありますか?