[Bug 26179] toString should be non enumerable

https://www.w3.org/Bugs/Public/show_bug.cgi?id=26179

--- Comment #2 from Erik Arvidsson <arv@google.com> ---
Chrome, Firefox & IE:

window.location.propertyIsEnumerable('toString')
false

Chrome, Firefox & IE:

document.createElement('a').propertyIsEnumerable('toString')
false


However:

Chrome:

HTMLAnchorElement.prototype.propertyIsEnumerable('toString')
false

Firefox & IE:

HTMLAnchorElement.prototype.propertyIsEnumerable('toString')
true

This looks like a bug in IE's and Firefox's DOM bindings

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Received on Monday, 23 June 2014 16:54:07 UTC