Re: [heycam/webidl] Can FrozenArray<T> be used for a mutable attribute? (#265)

This is the only mutable `FrozenArray<T>` attribute in Blink, and perhaps the first in any spec, so I thought it best to check if behavior like this is fine:
```
artwork = [];
metadata.artwork = artwork;
assert_not_equals(metadata.artwork, artwork)
assert_equals(metadata.artwork, metadata.artwork)
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/heycam/webidl/issues/265#issuecomment-272181638

Received on Thursday, 12 January 2017 14:48:26 UTC