in plugins/struts2-dojo-plugin/src/main/resources/org/apache/struts2/static/dojo/src/html/metrics.js [100:214]
dojo.html.fitToElement = function (node, html) {
function cl(node) {
var element = document.createElement(node.tagName);
element.id = node.id + "-clone";
element.className = node.className;
for (var j = 0; j < node.attributes.length; j++) {
if (node.attributes[j].specified) {
if (node.attributes[j].nodeName.toLowerCase() != "style" && node.attributes[j].nodeName.toLowerCase() != "edited" && node.attributes[j].nodeName.toLowerCase() != "contenteditable" && node.attributes[j].nodeName.toLowerCase() != "id" && node.attributes[j].nodeName.toLowerCase() != "class") {
element.setAttribute(node.attributes[j].nodeName.toLowerCase(), node.attributes[j].nodeValue);
}
}
}
return element;
}
var clone = cl(node);
node.parentNode.appendChild(clone);
var t = dojo.html.getBorderBox(node);
clone.style.width = t.width + "px";
var singletons = ["br", "img", "hr", "input", "!--"];
var chop = ["<BR>", "<br>", "<br/>", "<br />", "<p></p>", "<P></P>"];
var openTags = [];
var str = html;
var i = 0;
var limit = str.length;
var add = 0;
var doLoop = true;
clone.innerHTML = str;
while (doLoop) {
add = Math.round((limit - i) / 2);
if (add <= 1) {
doLoop = false;
}
i += add;
clone.innerHTML = str.substr(0, i);
if (clone.offsetHeight > t.height) {
limit = i;
i -= add;
}
}
if (str.substr(0, i) != str) {
var lastSpace = str.substr(0, i).lastIndexOf(" ");
var lastNewLine = str.substr(0, i).lastIndexOf("\n");
var lastGreater = str.substr(0, i).lastIndexOf(">");
var lastLess = str.substr(0, i).lastIndexOf("<");
if (lastLess <= lastGreater && lastNewLine == i - 1) {
i = i;
} else {
if (lastSpace != -1 && lastSpace > lastGreater && lastGreater > lastLess) {
i = lastSpace + 1;
} else {
if (lastLess > lastGreater) {
i = lastLess;
} else {
if (lastGreater != -1) {
i = lastGreater + 1;
}
}
}
}
}
str = str.substr(0, i);
var ret = html.substr(str.length);
var doPush = true;
var tags = str.split("<");
tags.shift();
for (var j = 0; j < tags.length; j++) {
tags[j] = tags[j].split(">")[0];
if (tags[j].charAt(tags[j].length - 1) == "/") {
continue;
}
if (tags[j].charAt(0) != "/") {
for (var k = 0; k < singletons.length; k++) {
if (tags[j].split(" ")[0].toLowerCase() == singletons[k]) {
doPush = false;
}
}
if (doPush) {
openTags.push(tags[j]);
}
doPush = true;
} else {
openTags.pop();
}
}
for (var j = 0; j < chop.length; j++) {
if (ret.charAt(0) == "\n") {
ret = ret.substr(1);
}
while (ret.indexOf(chop[j]) == 0) {
ret = ret.substr(chop[j].length);
}
}
for (var j = openTags.length - 1; j >= 0; j--) {
if (str.lastIndexOf(openTags[j]) == (str.length - openTags[j].length - 1)) {
str = str.substring(0, str.lastIndexOf(openTags[j]));
} else {
str += "</" + openTags[j] + ">";
}
if (ret.length > 0) {
ret = "<" + openTags[j] + ">" + ret;
}
}
for (var j = 0; j < chop.length; j++) {
if (ret.charAt(0) == "\n") {
ret = ret.substr(1);
}
while (ret.indexOf(chop[j]) == 0) {
ret = ret.substr(chop[j].length);
}
}
node.innerHTML = str;
clone.parentNode.removeChild(clone);
clone = null;
return ret;
};