OSDN Git Service

Version 0.6.27, bugfix for X.Dom.Parser.
[pettanr/clientJs.git] / 0.6.x / js / dom / 11_XDomNode.js
index 667a1db..549382a 100644 (file)
@@ -1,12 +1,37 @@
 \r
 X.Dom.Dirty = {\r
        CLEAN            :  0,\r
-       TREE             :  1, // width, height, x, y\r
+       ID               :  1, // width, height, x, y\r
        CONTENT          :  2,  // width, height, x, y textNode の内容\r
        CLASSNAME        :  4, // _getCharSize, width, height, x, y\r
        CSS              :  8, // _getCharSize, width, height, x, y\r
        ATTR             : 16,  // _getCharSize, width, height, x, y\r
-       IE4_TEXTNODE_FIX : 32\r
+       IE_FILTER        : X.UA.IE && X.UA.IE < 9 ? 32 : 0,\r
+       IE4_TEXTNODE_FIX : 64\r
+};\r
+\r
+/*\r
+ * \r
+ *\r
+ * destroyed\r
+ * display:none\r
+ * display:block\r
+ * display:inline\r
+ * \r
+ */\r
+\r
+X.Dom.State = {\r
+       DESTROYED          : 0,\r
+       DISPLAY_NONE       : 1,\r
+       DISPLAY_BLOCK      : 2,\r
+       DISPLAY_INLINE     : 4,\r
+       POSITION_ABSOLUTE  : 2,\r
+       OVERFLOW_HIDDEN    : 4,\r
+       HAS_WIDTH_LENGTH   : 8,\r
+       HAS_WIDTH_PERCENT  : 16,\r
+       HAS_HEIGHT_LENGTH  : 16,\r
+       HAS_HEIGHT_PERCENT : 32,\r
+       IE4_ONLY_TEXT      : 64\r
 };\r
 \r
 /*\r
@@ -18,8 +43,8 @@ X.Dom.Node = X.EventDispatcher.inherits(
        X.Class.POOL_OBJECT,\r
        {\r
                _uid       : 0,\r
-               _destroyed : false,\r
-               _dirty     : 0,         \r
+               _state     : 0,\r
+               _dirty     : 0,\r
                \r
                _rawNode   : null,\r
                _root      : null, // xnode が文書ツリーに属しているか?はこれを見る\r
@@ -37,7 +62,7 @@ X.Dom.Node = X.EventDispatcher.inherits(
                _attrText  : '',\r
                \r
                _css       : null, // X.Dom.Style\r
-               _cssText   : ' ',\r
+               _cssText   : null,\r
                \r
                _anime     : null,\r
                \r
@@ -48,6 +73,7 @@ X.Dom.Node = X.EventDispatcher.inherits(
                                Node._newByTag  = false;\r
                                this._tag       = v;\r
                                this._xnodeType = 1;\r
+                               this._state     = X.Dom.State.DISPLAY_INLINE; // todo\r
                                arguments[ 1 ] && this.attr( arguments[ 1 ] );\r
                                css = arguments[ 2 ];\r
                                css && this[ X.Type.isString( css ) ? 'cssText' : 'css' ]( css );\r
@@ -56,6 +82,7 @@ X.Dom.Node = X.EventDispatcher.inherits(
                                Node._newByText = false;\r
                                this._text      = v;\r
                                this._xnodeType = 3;\r
+                               this._state     = X.Dom.State.DISPLAY_INLINE;\r
                        } else {\r
                                if( 1 < arguments.length ) return new X.Dom.NodeList( arguments );\r
                                if( X.Type.isArray( v ) && v.length ) return new X.Dom.NodeList( v );\r
@@ -72,12 +99,12 @@ X.Dom.Node = X.EventDispatcher.inherits(
                                                this._root      = this.parent ? this.parent._root : null;\r
                                                this._rawNode   = v;\r
                                                this._xnodeType = 1;\r
+                                               this._state     = X.Dom.State.DISPLAY_BLOCK; // todo\r
                                                this._tag       = v.tagName;\r
                                                this._id        = v.id;\r
                                                this._className = v.className;\r
                                                this.cssText( v.style.cssText );\r
                                                // X.Dom.Dirty.CSS を落とす\r
-                                               this._dirty    &= ~X.Dom.Dirty.CSS;\r
                                                this._dirty = 0;\r
                                                // attr の回収は不可能、、、\r
                                                if( X.UA.IE && X.UA.IE < 5 ){\r
@@ -93,6 +120,7 @@ X.Dom.Node = X.EventDispatcher.inherits(
                                                this._root      = this.parent ? this.parent._root : null;\r
                                                this._rawNode   = v;\r
                                                this._xnodeType = 3;\r
+                                               this._state     = X.Dom.State.DISPLAY_INLINE;\r
                                                this._text      = v.data;\r
                                                v.UID = uid;\r
                                                break;\r
@@ -107,6 +135,7 @@ X.Dom.Node = X.EventDispatcher.inherits(
                                        case Node.IS_DOCUMENT :\r
                                                this._rawNode   = v;\r
                                                this._xnodeType = 2;\r
+                                               this._state     = X.Dom.State.DISPLAY_BLOCK;\r
                                                break;\r
                                        default :\r
                                                if( Node.none ) return Node.none;\r
@@ -176,9 +205,19 @@ Node._getXNode = function( v ){
 };\r
 \r
 \r
-Node.create = function( tag, opt_attr, opt_css ){\r
-       Node._newByTag = true;\r
-       return new Node( tag, opt_attr, opt_css );\r
+Node.create = function( tag, opt_attrs, opt_css ){\r
+       var list, i;\r
+       switch( Node._getType( tag ) ){\r
+               case Node.IS_STRING :\r
+                       Node._newByTag = true;\r
+                       return new Node( tag, opt_attrs, opt_css );\r
+               case Node.IS_HTML_STRING :\r
+                       list = X.Dom.parse( tag, true );\r
+                       for( i = list.length; 1 < i; ){\r
+                               list[ --i ].destroy();\r
+                       };\r
+                       return list[ 0 ];\r
+       };\r
 };\r
 Node.createText = function( text ){\r
        Node._newByText = true;\r
@@ -226,12 +265,11 @@ Node.prototype.create = function( tag, opt_attrs, opt_css ){
        if( this._xnodeType !== 1 ) return;\r
        if( !this._xnodes ) this._xnodes = [];\r
        \r
-       Node._newByTag = true;\r
-       xnode = new Node( tag, opt_attrs, opt_css );\r
-       xnode.parent = this;\r
+       xnode = Node.create( tag, opt_attrs, opt_css );\r
        \r
-       this._root && this._reserveUpdate();\r
+       xnode.parent = this;\r
        this._xnodes[ this._xnodes.length ] = xnode;\r
+       this._root && this._reserveUpdate();\r
        return xnode;\r
 };\r
 \r
@@ -307,22 +345,22 @@ Node.prototype.append = function( v ){
                        break;\r
                case Node.IS_HTML_STRING :\r
                case Node.IS_STRING :\r
-                       return this.append( X.Dom.parse( v, true ) );\r
+                       return this.append.apply( this, X.Dom.parse( v, true ) );\r
                case Node.IS_XNODE :\r
                        if( v._xnodeType !== 1 && v._xnodeType !== 3 ) return this;\r
                        // 親の xnodes から v を消す\r
                        if( v.parent ){\r
-                               if( document.getElementById ){\r
-                                       v.parent._xnodes.splice( v.parent._xnodes.indexOf( v ), 1 );\r
-                               } else\r
-                               if( document.all ){\r
+                               //if( document.getElementById ){\r
+                               //      v.parent._xnodes.splice( v.parent._xnodes.indexOf( v ), 1 );\r
+                               //} else\r
+                               //if( document.all ){\r
                                        v.remove();\r
-                               } else {\r
+                               //} else {\r
                                        \r
-                               };\r
+                               //};\r
                        } else\r
                        if( ( i = Node._reserveRemoval.indexOf( v ) ) !== -1 ){\r
-                               if( v._destroyed ) alert( 'xnode already destroyed!' );\r
+                               if( !this._state ) alert( 'xnode already destroyed!' );\r
                                Node._reserveRemoval.splice( i, 1 );\r
                        };\r
                        break;\r
@@ -342,16 +380,15 @@ Node.prototype.appendAt = function( start, v ){
        \r
        if( this._xnodeType !== 1 ) return this;\r
        \r
+       l = arguments.length;\r
        if( !( xnodes = this._xnodes ) ) xnodes = this._xnodes = [];\r
        \r
-       l = arguments.length;\r
        if( xnodes.length <= start ){\r
                if( l === 2 ) return this.append( v );\r
-               v = [];\r
-               for( ; 1 < l; ){\r
-                       v[ l - 2 ] = arguments[ --l ];\r
+               for( i = 1; i < l; ++i ){\r
+                       this.append( arguments[ i ] );\r
                };\r
-               return this.append.apply( this, v );\r
+               return this;\r
        };\r
        if( start < 0 ) start = 0;\r
        if( 2 < l ){\r
@@ -377,17 +414,17 @@ Node.prototype.appendAt = function( start, v ){
                        if( v._xnodeType !== 1 && v._xnodeType !== 3 ) return this;\r
                        // 親の xnodes から v を消す\r
                        if( v.parent ){\r
-                               if( document.getElementById ){\r
-                                       v.parent._xnodes.splice( v.parent._xnodes.indexOf( v ), 1 );\r
-                               } else\r
-                               if( document.all ){\r
+                               //if( document.getElementById ){\r
+                               //      v.parent._xnodes.splice( v.parent._xnodes.indexOf( v ), 1 );\r
+                               //} else\r
+                               //if( document.all ){\r
                                        v.remove();\r
-                               } else {\r
+                               //} else {\r
                                        \r
-                               };\r
+                               //};\r
                        } else\r
                        if( ( i = Node._reserveRemoval.indexOf( v ) ) !== -1 ){\r
-                               if( v._destroyed ) alert( 'xnode already destroyed!' );\r
+                               if( !this._state ) alert( 'xnode already destroyed!' );\r
                                Node._reserveRemoval.splice( i, 1 );\r
                        };\r
                        break;\r
@@ -402,11 +439,19 @@ Node.prototype.appendAt = function( start, v ){
 };\r
 \r
 Node.prototype.appendTo = function( parent, opt_index ){\r
-       if( parent.constructor === Node ){\r
-               opt_index === undefined ? parent.append( this ) : parent.appendAt( opt_index, this );\r
-       } else {\r
-               opt_index === undefined ? new Node( parent ).append( this ) : new Node( parent ).appendAt( opt_index, this );\r
+       switch( Node._getType( parent ) ){\r
+               case Node.IS_RAW_HTML :\r
+                       parent = new Node( parent );\r
+                       break;\r
+               case Node.IS_HTML_STRING :\r
+                       parent = X.Dom.parse( parent, true );\r
+                       parent = parent[ 0 ] || parent;\r
+               case Node.IS_XNODE :\r
+                       break;\r
+               default :\r
+                       return this;\r
        };\r
+       opt_index === undefined ? parent.append( this ) : parent.appendAt( opt_index, this );\r
        return this;\r
 };\r
 \r
@@ -419,36 +464,44 @@ Node.prototype.appendToRoot = function( opt_index ){
  *  Before , After, Replace\r
  */\r
 Node.prototype.before = function( v ){\r
-       var parent, l;\r
-       if( !( parent = this.parent ) ){\r
-               return this;\r
-       };\r
+       var parent, l, start;\r
+       if( !( parent = this.parent ) ) return this;\r
+       \r
        l = arguments.length;\r
+       start = this.getOrder();\r
        if( 1 < l ){\r
-               v = [ this.getOrder() ];\r
                for( ; l; ){\r
-                       v[ l ] = arguments[ --l ];\r
+                       parent.appendAt( start, arguments[ --l ] );\r
                };\r
-               parent.appendAt.apply( parent, v );\r
                return this;\r
        };\r
-       parent.appendAt( this.getOrder(), v );\r
+       parent.appendAt( start, v );\r
        return this;\r
 };\r
 \r
 Node.prototype.after = function( v ){\r
-       var parent, l;\r
+       var parent, l, i, start;\r
        if( !( parent = this.parent ) ) return this;\r
+       \r
        l = arguments.length;\r
+       start = this.getOrder() + 1;\r
+       if( parent._xnodes.length <= start ){\r
+               if( 1 < l ){\r
+                       for( i = 0; i < l; ++i ){\r
+                               parent.append( arguments[ i ] );\r
+                       };\r
+                       return this;\r
+               };\r
+               parent.append( v );\r
+               return this;\r
+       };\r
        if( 1 < l ){\r
-               v = [ this.getOrder() + 1 ];\r
                for( ; l; ){\r
-                       v[ l ] = arguments[ --l ];\r
+                       parent.appendAt( start, arguments[ --l ] );\r
                };\r
-               parent.appendAt.apply( parent, v );\r
                return this;\r
        };\r
-       parent.appendAt( this.getOrder() + 1, v );\r
+       parent.appendAt( start, v );\r
        return this;\r
 };\r
 \r
@@ -462,23 +515,24 @@ Node.prototype.replace = function( v ){
  */\r
 Node.prototype.remove = function(){\r
        var parent = this.parent;\r
-               \r
+       \r
        if( !parent ) return this;\r
 \r
        parent._xnodes.splice( parent._xnodes.indexOf( this ), 1 );\r
        if( this._root ){\r
                Node._reserveRemoval[ Node._reserveRemoval.length ] = this;\r
-               parent._reserveUpdate();\r
+               this._reserveUpdate();\r
        };\r
        delete this.parent;\r
+       delete this._root;\r
        return this;\r
 };\r
 \r
 Node.prototype.empty = function(){\r
-       var xnodes = this._xnodes, child, i, l;\r
-       if( xnodes && ( l = xnodes.length ) ){\r
-               for( i = 0; i < l; ++i ){\r
-                       xnodes[ i ].destroy();\r
+       var xnodes = this._xnodes, i;\r
+       if( xnodes && ( i = xnodes.length ) ){\r
+               for( ; i; ){\r
+                       xnodes[ --i ].destroy();\r
                };\r
                xnodes.length = 0;\r
        };\r
@@ -489,26 +543,27 @@ Node.prototype.empty = function(){
  *  destory\r
  */\r
 Node.prototype.destroy = function( isChild ){\r
-       var xnodes = this._xnodes, i;\r
+       var xnodes = this._xnodes, i, elm;\r
+       \r
+       if( !this._state ) return;\r
        \r
-       if( this._destroyed ) return;\r
+       elm = this._rawNode || this._ie4getRawNode && this._ie4getRawNode();\r
        \r
        if( xnodes && ( i = xnodes.length ) ){\r
-               for( ; i; ){\r
-                       xnodes[ --i ].destroy( true );\r
-               };\r
-               xnodes.length = 0;\r
+               //for( ; i; ){\r
+               //      xnodes[ --i ].destroy( true );\r
+               //};\r
        };\r
-       this.unlisten(); // イベントの退避\r
+       elm && this._listeners && this.unlisten(); // イベントの退避\r
 \r
        delete Node._chashe[ this._uid ];\r
+       delete this._state;\r
        \r
-       if( this._root ){//this._rawNode && this._rawNode.parentNode && this._rawNode.parentNode.tagName ){\r
-               this.remove();\r
-               this._destroyed = true; // state                \r
+       if( this._root ){\r
+               !isChild && this.remove();\r
        } else {\r
                this.parent && this.parent._xnodes.splice( this.parent._xnodes.indexOf( this ), 1 );\r
-               !isChild && this._actualRemove();\r
+               elm && !isChild && this._actualRemove();\r
                this.kill();\r
        };\r
 };\r
@@ -522,7 +577,7 @@ Node.prototype.contains = function( v ){
        var elm, type, xnodes, i;\r
        if( !v || this._xnodeType !== 1 ) return false;\r
        // contains ie4+\r
-       if( ( elm = this._rawNode || this._ie4getRawNode() ) && document.contains && ( type = Node._getType( v ) ) && ( type === Node.IS_RAW_HTML || type === Node.IS_RAW_TEXT ) ){\r
+       if( ( elm = this._rawNode || this._ie4getRawNode && this._ie4getRawNode() ) && document.contains && ( type = Node._getType( v ) ) && ( type === Node.IS_RAW_HTML || type === Node.IS_RAW_TEXT ) ){\r
                return elm.contains( v );       \r
        };\r
        //if( document.compareDocumentPosition ){\r
@@ -654,7 +709,7 @@ Node.prototype.hasClass = function( v ){
  *  html, text\r
  */\r
 Node.prototype.html = function( html, opt_outer ){\r
-       var xnodes, n, i, l;\r
+       var _ = '', xnodes, n, i, l;\r
        // setter\r
        if( html ){\r
                if( this._xnodeType === 3 ){\r
@@ -677,10 +732,10 @@ Node.prototype.html = function( html, opt_outer ){
        };\r
        html = !opt_outer ? [] : [\r
                '<', this._tag,\r
-               this._id ? ' id=' + this._id : '',\r
-               this._className ? ' class="' + this._className + '"' : '',\r
+               this._id ? ' id=' + this._id : _,\r
+               this._className ? ' class="' + this._className + '"' : _,\r
                this._attrText || ( this._attrText = X.Dom.Attr.objToAttrText( this._attrs ) ),\r
-               this._cssText !== ' ' ? ' style="' + this._cssText + '"' : '',\r
+               this._cssText ? ' style="' + this._cssText + '"' : _,\r
        '>' ];\r
        \r
        n = html.length;\r
@@ -692,7 +747,7 @@ Node.prototype.html = function( html, opt_outer ){
        };\r
        !opt_outer || X.Dom.DTD.EMPTY[ this._tag.toLowerCase() ] || ( html[ n ] = '<\/' + this._tag + '>' );\r
 \r
-       return html.join( '' );\r
+       return html.join( _ );\r
 };\r
 \r
 Node.prototype.text = function( text ){\r
@@ -723,6 +778,12 @@ Node.prototype.text = function( text ){
        return this._text;\r
 };\r
 \r
+Node.prototype.each = function( func ){\r
+       func.call( this, 0 );\r
+       return this;\r
+};\r
+\r
+\r
 /* --------------------------------------\r
  *  Async commit update\r
  * \r
@@ -747,23 +808,26 @@ Node.prototype._startUpdate = function(){
        var removal, i, xnode, tmp;\r
        \r
        if( this._updateTimerID ){\r
-               //X.Timer.cancelFrame( this._updateTimerID );\r
+               //X.Timer.cancelFrame( this._updateTimerID ); // fire 空の cancel が動かない、、、\r
                this._updateTimerID = 0;\r
        } else {\r
                return;\r
        };\r
 \r
        removal = Node._reserveRemoval;\r
-       i       = removal.length;\r
        \r
        tmp = this._rawNode.style.visibility;\r
        //this._rawNode.style.visibility = 'hidden';\r
        \r
-       for( ; i; ){\r
-               xnode = removal[ --i ];\r
-               xnode._actualRemove();\r
-               xnode._destroyed && xnode.kill();\r
+       if( i = removal.length ){\r
+               for( ; i; ){\r
+                       xnode = removal[ --i ];\r
+                       xnode._actualRemove();\r
+                       !this._state && xnode.kill();\r
+               };\r
+               removal.length = 0;             \r
        };\r
+       \r
        this._commitUpdate();\r
        \r
        //this._rawNode.style.visibility = tmp;\r
@@ -773,54 +837,41 @@ Node.prototype._commitUpdate =
        document.getElementById ?\r
                ( function( parentElement, nextElement ){\r
                        var elm = this._rawNode,\r
-                               xnodes, l, i, next, k, v;\r
+                               xnodes, l, i, frg, next, k, v;\r
 \r
-                       if( !elm || ( parentElement && elm.parentNode !== parentElement ) ){\r
+                       if( !elm || ( parentElement && elm.parentNode !== parentElement ) || ( nextElement && elm.nextSibling !== nextElement ) ){\r
                                nextElement ?\r
                                        parentElement.insertBefore( this._actualCreate(), nextElement ) :\r
                                        parentElement.appendChild( this._actualCreate() );\r
                                this._afterActualCreate();\r
+                               \r
+                               \r
                                return elm || this._rawNode;\r
-                       } else          \r
-                       if( ( xnodes = this._xnodes ) && ( l = xnodes.length ) ){\r
-                               for( ; l; ){\r
-                                       next = xnodes[ --l ]._commitUpdate( elm, next );\r
-                               };\r
+                       } else\r
+                       if( ( xnodes = this._xnodes ) && ( l = xnodes.length ) ) {\r
+                               \r
+                               /*if( elm.childNodes.length !== l && ( frg = Node._useDocumentFragment ) ){\r
+                                       for( i = 0; i < l; ++i ){\r
+                                               frg.appendChild( xnodes[ i ]._actualCreate( true ) );\r
+                                       };\r
+                                       elm.appendChild( frg );\r
+                                       for( i = 0; i < l; ++i ){\r
+                                               xnodes[ i ]._afterActualCreate( true );\r
+                                       };\r
+                               } else {*/\r
+                                       for( ; l; ){\r
+                                               next = xnodes[ --l ]._commitUpdate( elm, next );\r
+                                       };\r
+                               //};\r
                        };\r
 \r
-                       // textNode\r
-                       if( this._dirty & X.Dom.Dirty.CONTENT ) elm.data = X.Dom.chrReferanceTo( this._text );\r
-                       // className\r
-                       if( this._dirty & X.Dom.Dirty.CLASSNAME ) elm.className = this._className;\r
-                       // style\r
-                       if( this._dirty & X.Dom.Dirty.CSS ){\r
-                               if( this._cssText !== ' ' || ( this._cssText = X.Dom.Style.objToCssText( this._css ) ) ){\r
-                                       elm.style.cssText = this._cssText;\r
-                               } else {\r
-                                       elm.removeAttribute( 'style' );\r
-                                       delete this._cssText;\r
-                               };\r
-                       };\r
-                       // attr\r
-                       if( this._newAttrs ){\r
-                               for( k in this._newAttrs ){\r
-                                       ( v = this._newAttrs[ k ] ) === undefined ?\r
-                                               elm.removeAttribute( k ) :\r
-                                               ( elm[ k ] = v );\r
-                               };\r
-                               delete this._newAttrs;\r
-                       };\r
-                       \r
-                       delete this._dirty;\r
-                       \r
+                       this._dirty && this._updateRawNode( elm );\r
                        return elm;\r
                }) :\r
        document.all ? \r
                ( function( parentElement, prevElement ){\r
                        var elm    = this._rawNode || this._ie4getRawNode(),\r
-                               xnodes = this._xnodes,\r
-                               l      = xnodes && xnodes.length || 0,\r
-                               i, html, elm, child, prev, attrs, k, v;\r
+                               xnodes, l, i, html, text, prev;\r
 \r
                        if( !elm ){\r
                                prevElement ?\r
@@ -828,8 +879,12 @@ Node.prototype._commitUpdate =
                                        parentElement.insertAdjacentHTML( 'AfterBegin', this._actualCreate() );\r
                                this._afterActualCreate();\r
                                return this._rawNode || this._ie4getRawNode();\r
-                       } else\r
-                       if( this._dirty & X.Dom.Dirty.IE4_TEXTNODE_FIX ){\r
+                       };\r
+                       \r
+                       xnodes = this._xnodes;\r
+                       l      = xnodes ? xnodes.length : 0;\r
+                       \r
+                       if( this._dirty & X.Dom.Dirty.IE4_TEXTNODE_FIX || ( this._state & X.Dom.State.IE4_ONLY_TEXT && ( l !== 1 || xnodes[ 0 ]._xnodeType !== 3 ) ) ){ // 1 < l && elm.children.length === 0\r
                                html = [];\r
                                for( i = 0; i < l; ++i ){\r
                                        html[ i ] = xnodes[ i ]._actualCreate();\r
@@ -838,40 +893,138 @@ Node.prototype._commitUpdate =
                                for( i = 0; i < l; ++i ){\r
                                        xnodes[ i ]._afterActualCreate();\r
                                };\r
-                       } else          \r
+                               this._state &= ~X.Dom.State.IE4_ONLY_TEXT;\r
+                       } else\r
+                       if( this._state & X.Dom.State.IE4_ONLY_TEXT ){ // textNode が swap した場合の検出は、_root で行う\r
+                               text = xnodes[ 0 ];\r
+                               if( text._dirty || !text._root ){\r
+                                       elm.innerHTML = text._text;\r
+                                       delete text._dirty;\r
+                                       text._root = this._root;                                        \r
+                               };\r
+                       } else\r
                        if( l ){\r
                                for( i = 0; i < l; ++i ){\r
                                        prev = xnodes[ i ]._commitUpdate( elm, prev );\r
                                };\r
                        };\r
+                       this._dirty && this._updateRawNode( elm );\r
+                       return elm;\r
+               }) :\r
+               (function(){});\r
 \r
-                       // fake textNode\r
-                       if( this._dirty & X.Dom.Dirty.CONTENT ) elm.innerHTML = this._text;\r
+Node.prototype._updateRawNode =\r
+       document.getElementById ?\r
+               ( function( elm ){\r
+                       var attrs, rename, k, v;\r
+\r
+                       // textNode\r
+                       if( this._dirty & X.Dom.Dirty.CONTENT ){\r
+                               elm.data = X.Dom.chrReferanceTo( this._text );\r
+                               delete this._dirty;\r
+                               return;\r
+                       };\r
+                       // id\r
+                       if( this._dirty & X.Dom.Dirty.ID ){\r
+                               if( X.UA.IE && X.UA.IE < 7 ){\r
+                                       elm.id = this._id;\r
+                               } else {\r
+                                       this._id ? ( elm.id = this._id ) : elm.removeAttribute( 'id' );                                 \r
+                               };\r
+                       };\r
                        // className\r
-                       if( this._dirty & X.Dom.Dirty.CLASSNAME ) elm.className = this._className;\r
+                       if( this._dirty & X.Dom.Dirty.CLASSNAME ){\r
+                               if( X.UA.IE && X.UA.IE < 7 ){\r
+                                       elm.className = this._className;\r
+                               } else {\r
+                                       this._className ? ( elm.className = this._className ) : elm.removeAttribute( 'class' );                                 \r
+                               };\r
+                       };\r
                        // style\r
                        if( this._dirty & X.Dom.Dirty.CSS ){\r
-                               if( this._cssText !== ' ' || ( this._cssText = X.Dom.Style.objToCssText( this._css ) ) ){\r
+                               if( this._cssText || ( this._cssText = X.Dom.Style.objToCssText( this._css ) ) ){\r
                                        elm.style.cssText = this._cssText;\r
                                } else {\r
+                                       elm.style.cssText = ''; // IE5.5以下 Safari3.2 で必要\r
                                        elm.removeAttribute( 'style' );\r
                                        delete this._cssText;\r
                                };\r
                        };\r
+                       \r
+                       if( this._dirty & X.Dom.Dirty.IE_FILTER ){\r
+                               this._rawNode.style.filter = X.Dom.Style.SPECIAL_FIX( this._css );\r
+                       };\r
+                       \r
                        // attr\r
-                       if( attrs = this._newAttrs ){\r
+                       if( this._dirty & X.Dom.Dirty.ATTR && ( attrs = this._newAttrs || this._attrs ) ){\r
+                               rename = X.Dom.Attr.renameForDOM;\r
                                for( k in attrs ){\r
+                                       if( 5 <= X.UA.IE && X.UA.IE < 5.5 ){\r
+                                               if( this._tag === 'TEXTAREA' && k === 'value' ){\r
+                                                       elm.firstChild ?\r
+                                                               ( elm.firstChild.data = attrs[ k ] ) :\r
+                                                               elm.appendChild( document.createTextNode( attrs[ k ] ) );\r
+                                                       continue;\r
+                                               };\r
+                                       };\r
                                        ( v = attrs[ k ] ) === undefined ?\r
-                                               elm.removeAttribute( k ) :\r
-                                               elm.setAttribute( k, v );\r
-                                       delete attrs[ k ];\r
+                                               elm.removeAttribute( rename[ k ] || k ) :\r
+                                               ( elm[ rename[ k ] || k ] = v );\r
                                };\r
                                delete this._newAttrs;\r
                        };\r
                        \r
                        delete this._dirty;\r
+               }) :\r
+       document.all ? \r
+               ( function( elm ){\r
+                       var attrs, rename, k, v;\r
+\r
+                       // fake textNode\r
+                       if( this._dirty & X.Dom.Dirty.CONTENT ){\r
+                               elm.innerText = this._text;\r
+                               delete this._dirty;\r
+                               return;\r
+                       };\r
                        \r
-                       return elm;\r
+               /*\r
+                * http://www.tohoho-web.com/js/element.htm\r
+                * title、className、id、lang、language には setAttribute でなく、element.id で直接読み書きできる\r
+                */     \r
+                       // id\r
+                       if( this._dirty & X.Dom.Dirty.CONTENT ) elm.setAttribute( 'id', this._id || ( 'ie4uid' + xnode._uid ) );\r
+\r
+                       // className\r
+                       if( this._dirty & X.Dom.Dirty.CLASSNAME ){\r
+                               this._className ? ( elm.className = this._className ) : elm.removeAttribute( 'class' );\r
+                       };\r
+                       // style\r
+                       if( this._dirty & X.Dom.Dirty.CSS ){\r
+                               if( this._cssText || ( this._cssText = X.Dom.Style.objToCssText( this._css ) ) ){\r
+                                       elm.style.cssText = this._cssText;\r
+                               } else {\r
+                                       elm.style.cssText = '';\r
+                                       elm.removeAttribute( 'style' );\r
+                                       delete this._cssText;\r
+                               };\r
+                       };\r
+                       \r
+                       if( this._dirty & X.Dom.Dirty.IE_FILTER ){\r
+                               this._rawNode.style.filter = X.Dom.Style.SPECIAL_FIX( this._css );\r
+                       };\r
+                       \r
+                       // attr\r
+                       if( this._dirty & X.Dom.Dirty.ATTR && ( attrs = this._newAttrs || this._attrs ) ){\r
+                               rename = X.Dom.Attr.renameForDOM;\r
+                               for( k in attrs ){\r
+                                       ( v = attrs[ k ] ) === undefined ?\r
+                                               elm.removeAttribute( rename[ k ] || k ) :\r
+                                               elm.setAttribute( rename[ k ] || k, v );\r
+                               };\r
+                               delete this._newAttrs;\r
+                       };\r
+                       \r
+                       delete this._dirty;\r
                }) :\r
                (function(){});\r
 \r
@@ -883,7 +1036,7 @@ Node.prototype._commitUpdate =
  * return document.createRange().createContextualFragment("<div><select><option></option></select></div>");\r
  * insertAdjacentHTML\r
  * \r
- * ie7 以下では iframe の frameborder や、input name は、createElement 後に aetAttribute しても無視される\r
+ * ie7 以下では iframe の frameborder や、input name は、createElement 後に setAttribute しても無視される\r
  * \r
  * fragument がある場合 children も足して\r
  * Mozilla: 1.0+, IE: 6.0+, Netscape: 2.0+, Safari: 1.0+, Opera: 7.0+\r
@@ -898,7 +1051,9 @@ Node.prototype._actualCreate =
                        xnodes, frg, i, l;\r
                \r
                if( this._xnodeType === 3 ){\r
-                       return elm || ( this._rawNode = document.createTextNode( X.Dom.chrReferanceTo( this._text ) ) );\r
+                       if( elm ) return elm;\r
+                       delete this._dirty;\r
+                       return this._rawNode = document.createTextNode( X.Dom.chrReferanceTo( this._text ) );\r
                };\r
                \r
                if( !elm ){\r
@@ -914,7 +1069,7 @@ Node.prototype._actualCreate =
                                                        this._id ? ' id="' + this._id + '"' : '',\r
                                                        this._className ? ' class="' + this._className + '"' : '',\r
                                                        this._attrText || ( this._attrText = X.Dom.Attr.objToAttrText( this._attrs ) ),\r
-                                                       this._cssText !== ' ' ? ' style="' + this._cssText + '"' : '',\r
+                                                       this._cssText ? ' style="' + this._cssText + '"' : '',\r
                                                '>' ].join( '' ) ):\r
                                        document.createElement( this._tag );\r
                };\r
@@ -930,42 +1085,45 @@ Node.prototype._actualCreate =
                \r
                return elm;\r
        }) :\r
-       document.all ? (function(){\r
+       document.all ? (function( isChild ){\r
                var uid = this._uid,\r
                        html, xnodes, n, i, l;\r
                \r
                if( this._xnodeType === 3 ){\r
-                       html = [ '<FONT id=ie4uid', uid, ' UID=', uid, '>', this._text, '</FONT>' ];// fake textNode\r
+                       html = [ '<FONT id=ie4uid', uid, ' UID="', uid, '">', this._text, '</FONT>' ];// fake textNode\r
+                       delete this._rawNode;\r
                } else {\r
+                       if( this._rawNode && !isChild ) this._actualRemove( true );\r
+                       \r
                        if( this._dirty & X.Dom.Dirty.CSS && !( this._cssText = X.Dom.Style.objToCssText( this._css ) ) ){\r
                                delete this._cssText;\r
                        };\r
+                       \r
                        html = [\r
-                               '<', this._tag, ' id=', ( this._id || ( 'ie4uid' + uid ) ), ' UID=', uid,\r
+                               '<', this._tag, ' id=', ( this._id || ( 'ie4uid' + uid ) ), ' UID="', uid, '"',\r
                                this._className ? ' class="' + this._className + '"' : '',\r
                                this._attrText || ( this._attrText = X.Dom.Attr.objToAttrText( this._attrs ) ),\r
-                               this._cssText !== ' ' ? ' style="' + this._cssText + '"' : '',\r
+                               this._cssText ? ' style="' + this._cssText + '"' : '',\r
                        '>' ];\r
                        \r
                        n = html.length;\r
                        if( ( xnodes = this._xnodes ) && ( l = xnodes.length ) ){\r
                                if( l === 1 && xnodes[ 0 ]._xnodeType === 3 ){\r
                                        // only textnode\r
-                                       // html[ n ] = xnodes[ 0 ]._text;\r
-                                       // ++n\r
-                                       // ONLY_TEXTNODE\r
-                               };\r
-                               for( i = 0; i < l; ++i ){\r
-                                       html[ n ] = xnodes[ i ]._actualCreate();\r
+                                       html[ n ] = xnodes[ 0 ]._text;\r
                                        ++n;\r
+                                       this._state |= X.Dom.State.IE4_ONLY_TEXT;\r
+                               } else {\r
+                                       for( i = 0; i < l; ++i ){\r
+                                               html[ n ] = xnodes[ i ]._actualCreate( true );\r
+                                               ++n;\r
+                                       };                                      \r
                                };\r
                        };\r
                        X.Dom.DTD.EMPTY[ this._tag.toLowerCase() ] || ( html[ n ] = '<\/' + this._tag + '>' );\r
                        \r
                        delete this._newAttrs;\r
                };\r
-               delete this._dirty;\r
-               delete this._rawNode;\r
                \r
                return html.join( '' );\r
        }) :\r
@@ -973,20 +1131,17 @@ Node.prototype._actualCreate =
 \r
 Node.prototype._afterActualCreate =\r
        document.getElementById ? (function(){\r
-               var xnodes, l, elm, attrs, k, i;\r
+               var elm = this._rawNode, xnodes, l, attrs, k, i;\r
                \r
                this._root  = this.parent._root;\r
                \r
-               delete this._dirty;\r
                if( this._xnodeType === 3 ){\r
-                       //elm.UID = this._uid;\r
+                       this._dirty && this._updateRawNode( elm );\r
                        return this;\r
                };\r
-               delete this._newAttrs;\r
                        \r
                xnodes = this._xnodes;\r
                l      = xnodes && xnodes.length;\r
-               elm    = this._rawNode;\r
                \r
                if( this._isNew ){\r
                        if( !Node._useDocumentFragment && l ){// docFrg が使えない場合、doc 追加後に子を追加\r
@@ -996,28 +1151,31 @@ Node.prototype._afterActualCreate =
                        };\r
                        if( !X.UA.IE || 8 < X.UA.IE ){\r
                                elm.UID = this._uid;\r
-                               if( this._id ) elm.id = this._id;\r
-                               if( this._className ) elm.className = this._className;\r
-                               if( attrs = this._attrs ){\r
-                                       for( k in attrs ){\r
-                                               elm[ k ] = attrs[ k ];\r
-                                       };\r
-                               };\r
-                               if( this._cssText !== ' ' ) elm.style.cssText = this._cssText;\r
+                               this._newAttrs = this._attrs;\r
+                               this._dirty = X.Dom.Dirty.ID | X.Dom.Dirty.CLASSNAME | X.Dom.Dirty.CSS | X.Dom.Dirty.ATTR | X.Dom.Dirty.IE_FILTER;\r
+                               this._updateRawNode( elm );\r
+                       } else\r
+                       if( this._dirty & X.Dom.Dirty.IE_FILTER ){\r
+                               elm.style.filter = X.Dom.Style.SPECIAL_FIX( this._css );\r
+                               delete this._dirty;\r
                        };\r
                        this._restoreEvent();// イベントの復帰\r
                        delete this._isNew;\r
+               } else {\r
+                       this._dirty && this._updateRawNode( elm );\r
                };\r
+               \r
                if( l ){\r
                        for( i = 0; i < l; ++i ){\r
                                xnodes[ i ]._afterActualCreate();\r
                        };\r
                };\r
+               \r
                return this;\r
        }) :\r
        document.all ? (function(){\r
                var xnodes, i;\r
-               this._root  = this.parent && this.parent._root;\r
+               this._root = this.parent._root;\r
                \r
                if( this._xnodeType !== 1 ) return this;\r
                \r
@@ -1026,10 +1184,14 @@ Node.prototype._afterActualCreate =
                                xnodes[ --i ]._afterActualCreate();\r
                        };\r
                };\r
+               if( this._dirty & X.Dom.Dirty.IE_FILTER ){\r
+                       this._ie4getRawNode().style.filter = X.Dom.Style.SPECIAL_FIX( this._css );\r
+               };\r
+               delete this._dirty;\r
                return this._restoreEvent();// イベントの復帰\r
        }) :\r
        (function(){});\r
-       \r
+\r
 Node.prototype._actualRemove =\r
        document.getElementById ?\r
                ( function( isChild ){\r
@@ -1042,13 +1204,13 @@ Node.prototype._actualRemove =
                                        child._xnodeType === 1 && child._actualRemove( true );\r
                                };\r
                        };\r
-                       delete this._root;\r
+\r
                        if( !elm ) return;\r
                        this._xnodeType === 1 && this._migrateEvent();// イベントの退避\r
-                       // elm.parentNode.tagName check tagName is for ie7\r
+                       // elm.parentNode.tagName for ie7\r
                        !isChild && elm.parentNode && elm.parentNode.tagName && elm.parentNode.removeChild( elm );\r
                }) :\r
-       document.all ? \r
+       document.all ?\r
                ( function( isChild ){\r
                        var xnodes = this._xnodes,\r
                                elm    = this._rawNode || this._ie4getRawNode(),\r
@@ -1058,13 +1220,14 @@ Node.prototype._actualRemove =
                                        xnodes[ i ]._actualRemove( true );\r
                                };\r
                        };\r
-                       delete this._root;\r
+\r
                        if( !elm ) return;\r
                        this._xnodeType === 1 && this._migrateEvent();// イベントの退避\r
-                       delete this._rawNode;\r
-                       elm.removeAttribute( 'id', '' ); // ?\r
-                       document.all[ 'ie4uid' + this._uid ] = null; // ?\r
+                       \r
+                       elm.removeAttribute( 'id' ); // ?\r
+                       document.all[ this._id || ( 'ie4uid' + this._uid ) ] = null; // ?\r
                        if( !isChild ) elm.outerHTML = '';\r
+                       delete this._rawNode;\r
                }) :\r
                (function(){});\r
        \r
@@ -1072,3 +1235,5 @@ Node.prototype._actualRemove =
 //})( window, document );\r
 \r
 \r
+\r
+\r