[py-svn] r38105 - in py/trunk/py/test/rsession: . webdata

fijal at codespeak.net fijal at codespeak.net
Wed Feb 7 20:14:13 CET 2007


Author: fijal
Date: Wed Feb  7 20:14:10 2007
New Revision: 38105

Modified:
   py/trunk/py/test/rsession/webdata/index.html
   py/trunk/py/test/rsession/webdata/source.js
   py/trunk/py/test/rsession/webjs.py
Log:
Make errors bright red and bold, easier to spot.


Modified: py/trunk/py/test/rsession/webdata/index.html
==============================================================================
--- py/trunk/py/test/rsession/webdata/index.html	(original)
+++ py/trunk/py/test/rsession/webdata/index.html	Wed Feb  7 20:14:10 2007
@@ -20,6 +20,11 @@
         z-index: 2;
       }
 
+      .error {
+        color: #F00;
+        font-weight: bold;
+      }
+
       #navbar {
         position: fixed;
         right: 1em;

Modified: py/trunk/py/test/rsession/webdata/source.js
==============================================================================
Binary files. No diff available.

Modified: py/trunk/py/test/rsession/webjs.py
==============================================================================
--- py/trunk/py/test/rsession/webjs.py	(original)
+++ py/trunk/py/test/rsession/webjs.py	Wed Feb  7 20:14:10 2007
@@ -151,6 +151,7 @@
         link.setAttribute("href", "javascript:show_traceback('%s')" % (
                                                 msg['fullitemname'],))
         txt = create_text_elem('F')
+        link.setAttribute('class', 'error') 
         link.appendChild(txt)
         td.appendChild(link)
         exported_methods.show_fail(item_name, fail_come_back)



More information about the pytest-commit mailing list