Yank out special CSS for button rendering (not very portable or well tested, and we were encountering race conditions with CSS loading).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56449 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2008-09-22 18:14:23 +00:00
Родитель 28870e141a
Коммит 2384dfa88e
1 изменённых файлов: 0 добавлений и 12 удалений

Просмотреть файл

@ -473,18 +473,6 @@ print OUT <<ENDTEXT;
<head>
<title>${HtmlTitle}</title>
<link type="text/css" rel="stylesheet" href="/scanview.css"/>
<script language='javascript' type="text/javascript">
if (document.styleSheets && RegExp(" AppleWebKit/").test(navigator.userAgent))
{
var sheet = document.styleSheets[0];
if (sheet) {
var rules = sheet.cssRules;
if (rules) {
sheet.insertRule("td.Button a { white-space: nowrap; -webkit-appearance:square-button; padding-left:1em; padding-right:1em; padding-top:0.5ex; padding-bottom:0.5ex; text-decoration:none; color:black }", rules.length);
}
}
}
</script>
<script src="sorttable.js"></script>
<script language='javascript' type="text/javascript">
function SetDisplay(RowClass, DisplayVal)