Title: [216538] trunk/PerformanceTests
Revision
216538
Author
j...@apple.com
Date
2017-05-09 14:01:57 -0700 (Tue, 09 May 2017)

Log Message

[ARES6] Improved the running test indicator
https://bugs.webkit.org/show_bug.cgi?id=171400

Running tests show a triangle before the test title and the titles are white.

Reviewed by Joseph Pecoraro.

* ARES-6/index.html:
* ARES-6/styles.css:
(.test .running):
(.test .running:before):
(.test .indicator): Deleted.
(.test .indicator.running): Deleted.
(@keyframes test-running): Deleted.

Modified Paths

Diff

Modified: trunk/PerformanceTests/ARES-6/index.html (216537 => 216538)


--- trunk/PerformanceTests/ARES-6/index.html	2017-05-09 20:58:04 UTC (rev 216537)
+++ trunk/PerformanceTests/ARES-6/index.html	2017-05-09 21:01:57 UTC (rev 216538)
@@ -43,8 +43,7 @@
     <div class="tests">
         
         <div class="air test">
-            <div id="AirMessage" class="indicator">.</div>
-            <h2>Air</h2> 
+            <h2 id="AirMessage">Air</h2> 
 
             <div class="score">
                 <label>First Iteration</label>
@@ -69,8 +68,7 @@
         </div>
     
         <div class="basic test">
-            <div id="BasicMessage" class="indicator">.</div>
-            <h2>Basic</h2> 
+            <h2 id="BasicMessage">Basic</h2> 
             
             <div class="score">
                 <label>First Iteration</label>
@@ -95,8 +93,7 @@
         </div>
 
         <div class="babylon test">
-            <div id="BabylonMessage" class="indicator">.</div>
-            <h2>Babylon</h2> 
+            <h2 id="BabylonMessage">Babylon</h2> 
             
             <div class="score">
                 <label>First Iteration</label>
@@ -121,8 +118,7 @@
         </div>
 
         <div class="ML test">
-            <div id="MLMessage" class="indicator">.</div>
-            <h2>ML</h2> 
+            <h2 id="MLMessage">ML</h2> 
             
             <div class="score">
                 <label>First Iteration</label>

Modified: trunk/PerformanceTests/ARES-6/styles.css (216537 => 216538)


--- trunk/PerformanceTests/ARES-6/styles.css	2017-05-09 20:58:04 UTC (rev 216537)
+++ trunk/PerformanceTests/ARES-6/styles.css	2017-05-09 21:01:57 UTC (rev 216538)
@@ -155,23 +155,14 @@
     border-bottom: 1px solid #979797;
 }
 
-.test .indicator {
-    color: #E7B135;
-    opacity: 0;
-
-    position: absolute;
-    left: -1.2rem;
+.test .running {
+    color: #ffffff;
 }
 
-.test .indicator.running {
-    animation: test-running 1s;
+.test .running:before {
+    content: '\25b8';
 }
 
-@keyframes test-running {
-  0%   { opacity: 0; }
-  100%  { opacity: 1; }
-}
-
 .score {
     color: #E7B135;
     margin: 1rem 0;

Modified: trunk/PerformanceTests/ChangeLog (216537 => 216538)


--- trunk/PerformanceTests/ChangeLog	2017-05-09 20:58:04 UTC (rev 216537)
+++ trunk/PerformanceTests/ChangeLog	2017-05-09 21:01:57 UTC (rev 216538)
@@ -1,3 +1,20 @@
+2017-05-09  Jon Davis  <j...@apple.com>
+
+        [ARES6] Improved the running test indicator
+        https://bugs.webkit.org/show_bug.cgi?id=171400
+        
+        Running tests show a triangle before the test title and the titles are white.
+
+        Reviewed by Joseph Pecoraro.
+
+        * ARES-6/index.html:
+        * ARES-6/styles.css:
+        (.test .running):
+        (.test .running:before):
+        (.test .indicator): Deleted.
+        (.test .indicator.running): Deleted.
+        (@keyframes test-running): Deleted.
+
 2017-05-04  Andy VanWagoner  <thetalecraf...@gmail.com>
 
         [INTL] Add PerformanceTests for Intl objects
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to