with (classes) {

with (dom) {

with (view) {

view.AbstractView = function ()
{
 with (AbstractView)
 {
  if (! ("getComputedStyle" in this)) this.getComputedStyle = getComputedStyle;
 }

 return this;
}

AbstractView.getComputedStyle = function (elem, pseudoElt) { with (this)
{
 return dom.css.CSSStyleDeclaration.call(elem.currentStyle);
}}

}

}

}
