/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
//----------------------------------------------------------------------------- var BUGNUMBER = 464862; var summary = 'Do not assert: ( int32_t(delta) == uint8_t(delta) )'; var actual = ''; var expect = '';
printBugNumber(BUGNUMBER);
printStatus (summary);
function ygTreeView(id) { this.init(id);
}
ygTreeView.prototype.init = function (id) {this.root = new ygRootNode(this);};
ygNode.prototype.getChildrenHtml = function () { var sb = []; if (this.hasChildren(true) && this.expanded) {
sb[sb.length] = this.renderChildren();
}
};
ygNode.prototype.renderChildren = function () {returnthis.completeRender();};
ygNode.prototype.completeRender = function () { var sb = []; for (var i = 0; i < this.children.length; ++i) {
sb[sb.length] = this.children[i].getHtml();
}
};
ygRootNode.prototype = new ygNode;
function ygRootNode(_48) { this.init(null, null, true);
}
ygTextNode.prototype = new ygNode;
function ygTextNode(_49, _50, _51) { this.init(_49, _50, _51); this.setUpLabel(_49);
}
ygTextNode.prototype.setUpLabel = function (_52) { if (typeof _52 == "string") {} if (_52.target) {} this.labelElId = "ygtvlabelel" + this.index;
};
ygTextNode.prototype.getNodeHtml = function () { var sb = new Array;
sb[sb.length] = "
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.