IE Edge SVG Text rendering Bug

Edge has problems repainting texts when the transform changes. This results in text disappearing, not being rendered at the right location, etc. Press the test button - all tree text lines should move equally to the right. The lowest disappears after a few presses and resizing the test window will sometimes result in the top line not moving anymore and flickering.

HTML

<section id="one">
<div align="center"><svg version="1.1" id="Layer_1" x="0px" y="0px" viewbox="0 0 1000 600"> <filter id="dropShadow"> <fegaussianblur in="SourceAlpha" stddeviation="2"></fegaussianblur> <feoffset dx="2" dy="40"></feoffset> <femerge> <femergenode></femergenode> <femergenode in="SourceGraphic"></femergenode> </femerge> </filter> <g> <g> <g> <g opacity="0.38"> <polygon filter="url(#dropShadow)" fill="#666666" points="999.021,305.368 550.798,552.241 1.634,249.773 449.858,2.9 				"></polygon> <polygon fill="#666666" points="471.105,14.603 22.882,261.476 0,248.873 448.223,2 				"></polygon> <path fill="#666666" d="M413.118,125.429l9.477-5.221l-1.408-0.775l-54.12-10.95l-4.168,2.297l19.935,29.778l1.408,0.775
					l9.482-5.223l-2.547-3.848l14.949-8.233L413.118,125.429z M394.701,121.192l-8.668,4.774l-5.69-7.847L394.701,121.192z"></path> <path fill="#666666" d="M337.438,134.888L366.691,151c3.193-1.759,6.395-3.522,9.59-5.282l-29.253-16.112l9.262-5.101
					c-2.925-1.611-5.796-3.193-8.669-4.774l-28.167,15.514c2.872,1.582,5.744,3.164,8.668,4.774L337.438,134.888z"></path> <path fill="#666666" d="M348.002,161.293l3.465-1.909l-37.921-20.887c-3.304,1.82-6.609,3.641-9.912,5.459l18.554,10.219
					l-37.891,0.252l-3.521,1.94l38.083,20.976c3.304-1.821,6.658-3.667,10.019-5.519l-18.636-10.264L348.002,161.293z"></path> <path fill="#666666" d="M272.103,161.324c-8.877,4.889-14.895,8.205-23.669,13.037c12.568,6.922,25.245,13.904,37.921,20.886
					c8.774-4.832,15.281-8.416,24.158-13.305c-2.871-1.581-5.796-3.193-8.613-4.744c-5.683,3.13-8.935,4.921-14.518,7.997
					c-2.278-1.255-4.441-2.447-6.665-3.672l12.896-7.103c-2.871-1.582-5.741-3.163-8.612-4.744l-12.896,7.103l-5.363-2.954
					c5.583-3.076,8.398-4.625,14.029-7.727C277.846,164.488,274.919,162.876,272.103,161.324z"></path> <path fill="#666666"...

CSS

@font-face {
	font-family: 'FSElliotPro-Light';
	src: url('http://atenta.csight.ru/font/FSElliotPro-Light.eot');
	src: local('FSElliotPro-Light'), url('http://atenta.csight.ru/font/FSElliotPro-Light.woff2') format('woff2'), url('http://atenta.csight.ru/font/FSElliotPro-Light.woff') format('woff'), url('http://atenta.csight.ru/font/FSElliotPro-Light.ttf') format('truetype'), url('http://atenta.csight.ru/font/FSElliotPro-Light.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
g#slide >text> tspan
	{
	width:561px;
	height:223px;
	font-size: 1em;
	}
g#slide >text> tspan:nth-child(1)
	{
	font-family: FSElliotPro-Heavy;
	font-size: 1.5em;
	}
g#slide > text
	{
	visibility: hidden;
	}
g#slide >text:nth-child(1)
	{
	visibility: visible;
	}