[Bug 22391] Sequence or Array

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

Domenic Denicola <domenic@domenicdenicola.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |domenic@domenicdenicola.com

--- Comment #7 from Domenic Denicola <domenic@domenicdenicola.com> ---
One thing to watch out for is to avoid situations where `myDOMThing.arrayProp
!== myDOMThing.arrayProp`. This would occur if you specify properties as having
getters that always return fresh arrays (or that return new, frozen arrays that
represent mutable underlying data).

If you need a non-mutable view into data that could change over time, a method
returning a (non-frozen, snapshot) array seems best to me.

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

Received on Wednesday, 10 July 2013 20:14:57 UTC