[Bug 23565] cloneNode IDL does not match reality

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

--- Comment #22 from Anne <annevk@annevk.nl> ---
So these are the options as far as I can tell:

1)
  cloneNode() -> cloneNode(true)
  cloneNode(undefined) -> cloneNode(false)

2)
  cloneNode() -> cloneNode(false)
  cloneNode(undefined) -> cloneNode(false)

The latter is the preferred way of treating undefined. It also matches WebKit
and IE. The former matches Gecko and Chrome and will require some IDL hack long
term to make it work. Chrome only recently switched from 2. Gecko threw for the
cloneNode() case until one year ago. It seems to me the safest is to go with 2.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Wednesday, 23 October 2013 10:00:49 UTC