tests/test-hgweb.t
changeset 20256 b786754ba604
parent 19796 544848ef65f2
child 22046 7a9cbb315d84
child 22506 6e1fbcb18a75
--- a/tests/test-hgweb.t	Wed Jan 08 00:47:44 2014 +0900
+++ b/tests/test-hgweb.t	Thu Jan 16 09:23:31 2014 -0500
@@ -314,7 +314,7 @@
 
   $ "$TESTDIR/get-with-headers.py" --twice localhost:$HGPORT 'static/style-gitweb.css' - date etag server
   200 Script output follows
-  content-length: 4607
+  content-length: 5262
   content-type: text/css
   
   body { font-family: sans-serif; font-size: 12px; border:solid #d9d8d1; border-width:1px; margin:10px; }
@@ -486,6 +486,30 @@
   .block {
       border-top: 1px solid #d9d8d1;
   }
+  
+  .scroll-loading {
+    -webkit-animation: change_color 1s linear 0s infinite alternate;
+    -moz-animation: change_color 1s linear 0s infinite alternate;
+    -o-animation: change_color 1s linear 0s infinite alternate;
+    animation: change_color 1s linear 0s infinite alternate;
+  }
+  
+  @-webkit-keyframes change_color {
+    from { background-color: #A0CEFF; } to {  }
+  }
+  @-moz-keyframes change_color {
+    from { background-color: #A0CEFF; } to {  }
+  }
+  @-o-keyframes change_color {
+    from { background-color: #A0CEFF; } to {  }
+  }
+  @keyframes change_color {
+    from { background-color: #A0CEFF; } to {  }
+  }
+  
+  .scroll-loading-error {
+      background-color: #FFCCCC !important;
+  }
   304 Not Modified