[Bug 24570] New: [Custom]: Callback for cloneNode/importNode

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

            Bug ID: 24570
           Summary: [Custom]: Callback for cloneNode/importNode
           Product: WebAppsWG
           Version: unspecified
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Component Model
          Assignee: dglazkov@chromium.org
          Reporter: arv@chromium.org
        QA Contact: public-webapps-bugzilla@w3.org
                CC: mike@w3.org, public-webapps@w3.org
            Blocks: 14968

Built in elements like inputs have hooks for cloning data that is not
represented as children or attributes.

Strawman:

Add a cloneNodeCallback, which gets called after the element has been called,
with a the original element as the context object and the new node as the only
argument.

Then HTMLInputElement could be implemented as:

document.registerElemetn('input', {
  prototype: {
    __proto__: HTMLElement.prototype,
    cloneNodeCallback: function(newNode) {
      newNode.value = this.value;
    }
  }
});

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

Received on Thursday, 6 February 2014 22:51:42 UTC