template_manual (1368B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>{{TESTTITLE}}</title> 5 <script src="/resources/testharness.js"></script> 6 <script src="/resources/testharnessreport.js"></script> 7 <script src="/annotation-model/scripts/ajv.min.js"></script> 8 <script src="/annotation-model/scripts/showdown.min.js"></script> 9 <script src="/annotation-model/scripts/JSONtest.js"></script> 10 <script> 11 setup({explicit_timeout: true, explicit_done: true }); 12 13 var theDefinitions=[ 14 {{SCHEMADEFS}} 15 ]; 16 17 var theTestFile="{{TESTFILE}}"; 18 19 var runningTest = new JSONtest( { 20 "testInput" : "annotation-input", 21 "runTest" : "annotation-run", 22 "closeWindow" : "annotation-close", 23 "schemaDefs" : theDefinitions, 24 "testFile" : theTestFile 25 } ) ; 26 27 </script> 28 </head> 29 <body> 30 <p>Fill the textarea below with JSON output from your annotation client 31 implementation that supports the following criteria:</p> 32 <div id="testDescription"></div> 33 <form name="annotation" id="annotation"> 34 <textarea name="annotation-input" id="annotation-input" style="width: 90%; height: 10em" ></textarea> 35 <p><input type="button" id="annotation-run" name="Loading..." value="Loading..."> 36 <input style="display: none" type="button" id="annotation-close" 37 name="Close" value="Close"></p> 38 </form> 39 <p>Specifically, the following assertions will be evaluated:</p> 40 <div id="assertion"></div> 41 </body> 42 </html>