scripttest-pass.html (423B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>scripttest-pass</title> 5 <script type="text/javascript"> 6 function getTestCases() { 7 return [ 8 { 9 testPassed() { 10 return true; 11 }, 12 testDescription() { 13 return "passed"; 14 }, 15 }, 16 ]; 17 } 18 </script> 19 </head> 20 <body> 21 <h1>scripttest-pass</h1> 22 </body> 23 </html>