[common][animationtiming][fix tc code space issue] 78/192478/1
authorzhongyuan <zy123.yuan@samsung.com>
Tue, 6 Nov 2018 03:33:28 +0000 (11:33 +0800)
committerzhongyuan <zy123.yuan@samsung.com>
Tue, 6 Nov 2018 03:33:28 +0000 (11:33 +0800)
Change-Id: I7424c0b0eb17d1ef642a6a1d75978c975742c411

common/tct-animationtiming-w3c-tests/animationtiming/w3c/test_paint.htm

index 510f1d4173b2a92a703152f2cfb84a49bf4aff38..acad533f597c71e1ed3446c60b7e2cf351be7445 100755 (executable)
@@ -4,11 +4,11 @@
         <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
         <title>Paint Notification API Test Suite</title>
         <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
-        
+
         <script type="text/javascript" src="../../resources/testharness.js"></script>
         <link rel="stylesheet" href="../../resources/testharness.css" />
         <script type="text/javascript" src="paintnotificationharness.js"></script>
-        
+
         <style type="text/css">
             #div1
             {
                 width:50px;
             }
         </style>
-        
+
     </head>
     <body onload="DoTest();">
         <h1>Description</h1>
-        <p>This test validates the existence and functionality of the 
+        <p>This test validates the existence and functionality of the
             <a href="http://www.w3.org/TR/animation-timing/">WindowAnimationTiming</a> interface
            (window.requestAnimationFrame).</p>
-           
-        <p><b>Note:</b> 60Hz is assumed to be the refresh rate of the display.  
+
+        <p><b>Note:</b> 60Hz is assumed to be the refresh rate of the display.
            When verifying that the callbacks align with the display refresh rate, a delta of 5 is permitted.
         </p>
-        
+
         <div id="log"></div>
-        
+
         <script type="text/javascript" >
             setup({ explicit_done: true, timeout:20*1000 });
 
             function DoTest()
             {
                 test_paint_interface();
-                
+
                 if (reqAnimAPI !== undefined)
                 {
                     RunTests();
@@ -50,9 +50,9 @@
                     done();
                 }
             }
-            
+
         </script>
-        
+
         <div id="div1"></div>
     </body>
 </html>