Bug 1307710 - wpt: Update the getCueAsHTML testcase for testing leading zero of webvtt timestamp object. r=rillian

MozReview-Commit-ID: BQPugEkRCP0

--HG--
extra : rebase_source : ee96623e900469845d75b8481eeb2e9b3246d9e5
This commit is contained in:
bechen 2017-03-03 11:34:58 +08:00
Родитель ea5fd5a6e9
Коммит a15d784f85
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -8,7 +8,7 @@ test(function(){
var video = document.createElement('video');
var t1 = video.addTextTrack('subtitles');
document.body.appendChild(video);
var c1 = new VTTCue(0, 1, '<c></c><c.a.b></c><i></i><b></b><u></u><ruby><rt></rt></ruby><v></v><v a b></v><00:00:00.500>x\0');
var c1 = new VTTCue(0, 1, '<c></c><c.a.b></c><i></i><b></b><u></u><ruby><rt></rt></ruby><v></v><v a b></v><1:00:00.500>x\0');
t1.addCue(c1);
window.frag = c1.getCueAsHTML();
assert_equals(frag.childNodes.length, 10, 'childNodes.length');
@ -82,9 +82,9 @@ test(function(){
}, document.title+', <v a b>');
test(function(){
assert_equals(frag.childNodes[8].target, 'timestamp', 'target');
assert_equals(frag.childNodes[8].data, '00:00:00.500', 'data');
assert_equals(frag.childNodes[8].data, '01:00:00.500', 'data');
assert_true(frag.childNodes[8] instanceof ProcessingInstruction, 'instanceof');
}, document.title+', <00:00:00.500>');
}, document.title+', <1:00:00.500>');
test(function(){
assert_equals(frag.childNodes[9].data, 'x\0', 'data');
assert_true(frag.childNodes[9] instanceof Text, 'instanceof');