@qooxdoo/framework
Version:
The JS Framework for Coders
58 lines (45 loc) • 1.33 kB
JavaScript
/* ************************************************************************
qooxdoo - the new era of web development
http://qooxdoo.org
Copyright:
2004-2008 1&1 Internet AG, Germany, http://www.1und1.de
License:
MIT: https://opensource.org/licenses/MIT
See the LICENSE file in the project's top-level directory for details.
Authors:
* Sebastian Werner (wpbasti)
* Fabian Jakobs (fjakobs)
************************************************************************ */
/**
* @tag noPlayground
*/
qx.Class.define("qxl.demobrowser.demo.bom.Dimension",
{
extend : qx.application.Native,
members :
{
main : function()
{
this.base(arguments);
for (var i=1; i<1000; i++)
{
var el = document.getElementById("block" + i);
if (!el) {
break;
}
var msg = "Block " + i + ": Box=" + boxSize(el) + "; Content=" + contentSize(el);
this.debug(msg);
}
function boxSize(el)
{
var Dimension = qx.bom.element.Dimension;
return Dimension.getWidth(el) + "x" + Dimension.getHeight(el);
}
function contentSize(el)
{
var Dimension = qx.bom.element.Dimension;
return Dimension.getContentWidth(el) + "x" + Dimension.getContentHeight(el);
}
}
}
});