Bug 988416: Test for the Intl property existence before using it; r=till

--HG--
extra : rebase_source : 4a839ccee7d233de918898e88e3615eacd6d3c41
This commit is contained in:
Benjamin Bouvier 2014-04-14 17:43:33 +02:00
Родитель 2421662bb1
Коммит 1da45bee80
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -1,4 +1,7 @@
// These tests just mustn't trigger asserts.
if (!this.hasOwnProperty('Intl'))
quit();
Object.prototype.get = 5;
new Intl.Collator().resolvedOptions();