OSDN Git Service

Version 0.6.57, fixed NS of X.UI & X.Class for __proto__.
[pettanr/clientJs.git] / 0.6.x / js / dom / 13_XDomBoxModel.js
index 2fc367a..855a9b5 100644 (file)
@@ -38,7 +38,7 @@ X.Dom.listenOnce( X.Dom.Event.DOM_INIT, function(){
 \r
        X.Dom.BoxModel.vScrollbarSize = w;\r
        X.Dom.BoxModel.hScrollbarSize = h;\r
-       if( h < 0 ){\r
+       if( h <= 0 ){ // ie6, ie11, firefox で 負の値が返る\r
                console.log( 'invalid hScrollbarSize: ' + h );\r
                X.Dom.BoxModel.hScrollbarSize = w;\r
        };\r
@@ -82,7 +82,7 @@ Node.prototype.width = function(){
                console.log( 'xnode.width() : no parent' );\r
                return 0;\r
        };\r
-       Node.root._updateTimerID && Node.root._startUpdate();\r
+       Node._body._updateTimerID && Node._body._startUpdate();\r
        if( !this._root ){\r
                console.log( 'xnode.width() : not belong tree.' );\r
                return 0;\r
@@ -104,7 +104,7 @@ Node.prototype.height = function(){
                console.log( 'xnode.height() : no parent' );\r
                return 0;\r
        };\r
-       Node.root._updateTimerID && Node.root._startUpdate();\r
+       Node._body._updateTimerID && Node._body._startUpdate();\r
        if( !this._root ){\r
                console.log( 'xnode.height() : not belong tree.' );\r
                return 0;\r
@@ -126,7 +126,7 @@ Node.prototype.scrollWidth = function(){
                console.log( 'xnode.width() : no parent' );\r
                return 0;\r
        };\r
-       Node.root._updateTimerID && Node.root._startUpdate();\r
+       Node._body._updateTimerID && Node._body._startUpdate();\r
        if( !this._root ){\r
                console.log( 'xnode.width() : not belong tree.' );\r
                return 0;\r
@@ -148,7 +148,7 @@ Node.prototype.scrollHeight = function(){
                console.log( 'xnode.height() : no parent' );\r
                return 0;\r
        };\r
-       Node.root._updateTimerID && Node.root._startUpdate();\r
+       Node._body._updateTimerID && Node._body._startUpdate();\r
        if( !this._root ){\r
                console.log( 'xnode.height() : not belong tree.' );\r
                return 0;\r
@@ -170,7 +170,7 @@ Node.prototype.scrollLeft = function(){
                console.log( 'xnode.scrollLeft() : no parent' );\r
                return 0;\r
        };\r
-       Node.root._updateTimerID && Node.root._startUpdate();\r
+       Node._body._updateTimerID && Node._body._startUpdate();\r
        if( !this._root ){\r
                console.log( 'xnode.scrollLeft() : not belong tree.' );\r
                return 0;\r
@@ -192,7 +192,7 @@ Node.prototype.scrollTop = function(){
                console.log( 'xnode.scrollTop() : no parent' );\r
                return 0;\r
        };\r
-       Node.root._updateTimerID && Node.root._startUpdate();\r
+       Node._body._updateTimerID && Node._body._startUpdate();\r
        if( !this._root ){\r
                console.log( 'xnode.scrollTop() : not belong tree.' );\r
                return 0;\r
@@ -222,7 +222,7 @@ Node.prototype.x = function(){
                console.log( 'xnode.x() : no parent' );\r
                return 0;\r
        };\r
-       Node.root._updateTimerID && Node.root._startUpdate();\r
+       Node._body._updateTimerID && Node._body._startUpdate();\r
        if( !this._root ){\r
                console.log( 'xnode.x() : not belong tree.' );\r
                return 0;\r
@@ -245,7 +245,7 @@ Node.prototype.y = function(){
                console.log( 'xnode.y() : no parent' );\r
                return 0;\r
        };\r
-       Node.root._updateTimerID && Node.root._startUpdate();\r
+       Node._body._updateTimerID && Node._body._startUpdate();\r
        if( !this._root ){\r
                console.log( 'xnode.y() : not belong tree.' );\r
                return 0;\r