1
0
mirror of https://github.com/videojs/video.js.git synced 2024-12-25 02:42:10 +02:00

@nickygerritsen Fix test for tooltips in IE8. closes #3327

This commit is contained in:
Nicky Gerritsen 2016-05-19 09:47:27 +02:00
parent 06fdbaf73d
commit 17f856849d
2 changed files with 2 additions and 1 deletions

View File

@ -10,6 +10,7 @@ CHANGELOG
* @nickygerritsen Update Dutch language file ([view](https://github.com/videojs/video.js/pull/3297))
* @hartman Add descriptions and audio button to adaptive classes ([view](https://github.com/videojs/video.js/pull/3312))
* @MattiasBuelens Retain details from tech error ([view](https://github.com/videojs/video.js/pull/3313))
* @nickygerritsen Fix test for tooltips in IE8 ([view](https://github.com/videojs/video.js/pull/3327))
--------------------

View File

@ -22,6 +22,6 @@ test('should localize its text', function(){
el = testButton.createEl();
ok(el.nodeName.toLowerCase().match('button'));
ok(el.innerHTML.match('vjs-control-text">Juego'));
ok(el.innerHTML.match(/vjs-control-text"?>Juego/));
equal(el.getAttribute('title'), 'Juego');
});