Bug 1425995 - Add boilerplate to a TypedObject test so it runs only if TypedObject is defined. r=djvj

This will prevent the test from going permaorange when Gecko 59 merges to Beta.

--HG--
extra : rebase_source : 27a825187cbf27bc6254027ce27681d8730e86b5
This commit is contained in:
Jason Orendorff 2017-12-20 10:14:27 -06:00
Родитель b4a0d9b9d5
Коммит 2f9a01eb0b
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -1,3 +1,6 @@
if (!this.hasOwnProperty("TypedObject"))
quit();
var Uint32Array = TypedObject.float32.array(3);
const ONE_MINUS_EPSILON = 1 - Math.pow(2, -53);
const f = new Float64Array([0, 0]);