I've created static *.html5 file and deployed it on wildfly 8.1.0. Inside I've created tag with TTML subtitles. When I open page in IE Edge, subtitles are rendered but my css settings are not shown. Only setting that is working is region. How can I make my styles work? This is example of my subtitles track:
<?xml version="1.0" encoding="UTF-8"?>
<tt
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.w3.org/ns/ttml"
xmlns:ttp="http://www.w3.org/ns/ttml#parameter"
xmlns:tts="http://www.w3.org/ns/ttml#styling" ttp:timeBase="media" xml:lang="eng"
ttp:cellResolution="50 30">
<head>
<styling>
<style xml:id="spanStyle" tts:color="#000000" tts:backgroundColor="#00FF00" tts:fontSize="160%" tts:fontFamily="default"/>
<style xml:id="paragraphStyle" tts:textAlign="center"/>
</styling>
<layout>
<region xml:id="bottom" tts:origin="10% 10%" tts:extent="80% 80%" tts:displayAlign="after" />
</layout>
</head>
<body>
<div>
<p begin="00:00:00.000" xml:id="p0" end="00:00:03.000" style="paragraphStyle" region="bottom">
<span style="spanStyle">
Example subtitle
</span>
</p>
</div>
</body>
</tt>
Thank you!