###### Jerry version: ``` Checked revision: 9d423d9 Build: debug.linux ``` ###### OS: ``` Ubuntu 14.04, x86_64 ``` ###### Description: Asking for the properties of any builtin objects results in a list, that only contains the previously used property names. E.g: ``` javascript var propertyNames = Object.getOwnPropertyNames(Math); print(propertyNames.join(", ")); ``` results an empty list. However: ``` javascript var propertyNames = Object.getOwnPropertyNames(Object); print(propertyNames.join(", ")); ``` gives a list with only the "getOwnPropertyNames" property, since it was used already.