Update of /cvsroot/qooxdoo/qooxdoo/source/script/gui
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26496/source/script/gui
Modified Files:
Tag: renderer
QxWidget.js
Log Message:
Moved box-sizing to demo-layout (ugly, but working for opera)
Index: QxWidget.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/Attic/QxWidget.js,v
retrieving revision 1.1.2.55
retrieving revision 1.1.2.56
diff -u -d -r1.1.2.55 -r1.1.2.56
--- QxWidget.js 25 Jan 2006 11:19:00 -0000 1.1.2.55
+++ QxWidget.js 25 Jan 2006 17:57:46 -0000 1.1.2.56
@@ -60,8 +60,6 @@
this._htmlAttributes = { qxhashcode : this._hashCode };
*/
this._styleProperties = { position : QxConst.CORE_ABSOLUTE };
-
- this.setStyleProperty(QxWidget.BOX_SIZING_PROPERTY, QxWidget.BOX_SIZING_VALUE);
// ************************************************************************
@@ -91,20 +89,6 @@
QxWidget.CORE_CLASS = "QxWidgetCore";
QxWidget.OMIT_CLASS = "QxWidget";
-QxWidget.BOX_SIZING_VALUE = "border-box";
-
-if (QxClient.isGecko())
-{
- QxWidget.BOX_SIZING_PROPERTY = "MozBoxSizing";
-}
-else if (QxClient.isKhtml())
-{
- QxWidget.BOX_SIZING_PROPERTY = "khtmlBoxSizing";
-}
-else
-{
- QxWidget.BOX_SIZING_PROPERTY = "boxSizing";
-};
/*!
Will be calculated later
|