[cfe-commits] r56449 - /cfe/trunk/utils/scan-build
Ted Kremenek
kremenek at apple.com
Mon Sep 22 11:14:23 PDT 2008
Author: kremenek
Date: Mon Sep 22 13:14:23 2008
New Revision: 56449
URL: http://llvm.org/viewvc/llvm-project?rev=56449&view=rev
Log:
Yank out special CSS for button rendering (not very portable or well tested, and we were encountering race conditions with CSS loading).
Modified:
cfe/trunk/utils/scan-build
Modified: cfe/trunk/utils/scan-build
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/scan-build?rev=56449&r1=56448&r2=56449&view=diff
==============================================================================
--- cfe/trunk/utils/scan-build (original)
+++ cfe/trunk/utils/scan-build Mon Sep 22 13:14:23 2008
@@ -473,18 +473,6 @@
<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)
More information about the cfe-commits
mailing list