forked from Section508Coordinators/ACRT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ACRT_Web_Input_Form.html
798 lines (662 loc) · 49.8 KB
/
ACRT_Web_Input_Form.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Create Report</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no" />
<meta name="description" content="Great Tool to track test results" />
<link rel="stylesheet" type="text/css" href="./CSS/acrt_styles.css">
<script src="./JS/AngularJS1.6.9/angular.min.js"></script>
<script src = "./JS/FileSaver.min.js"> </script>
</head>
<body ng-app="acrtWebIntake" id="acrtBody">
<form name="acrtInputForm" id="acrtInputFormID">
<div ng-controller="acrtWebIntakeCtrl">
<a href="#helpID" id="skipID" class="skip" autofocus >Skip to Main Content </a>
<div >
<img src=".\Resources\logo.png" alt="ACRT logo" title="ACRT Logo"style="width:5em;height:3.3em;">
<strong style="font-size: 1.5em;display: inline-block;" title="Accessibility Conformance Reporting Tool (ACRT)"> Accessibility Conformance Reporting Tool (ACRT) </strong>
</div>
<div class="topnav" id="myTopnav">
<a title="Home" href="./index.html" id="homeID" class="menu" >Home </a> <!--target="_blank" -->
<a title="Instructions" href="./Instruction.html" id="instructionID" class="menu" id="defaultFocus" >Instructions </a>
<a title="Create Report" href="./ACRT_Web_Input_Form.html" id="crtReportID" class="menu" >Create Report</a>
<a title="View Report" href="./ACRT_View_webReport.html" id="vwRptId" class="menu" >View Report</a>
<a title="View License" href= "./LICENSE.html" id="licenseID" class="menu" > View License </a>
</div>
<br>
<div style="margin-left: 1em;">
<h1> Create Report </h1>
<!--
To make sure you have the latest version of ACRT, check either
<a title="ACRT GitHub Repository" href= "https://github.com/Section508Coordinators/ACRT " target="_blank" id="helpID"> GitHub </a> (all users)
or <a title="ACRT Bitbucket Repository" href= "https://maestro.dhs.gov/stash/projects/APPDEV/repos/acrt/browse/acrt" target="_blank" id="bitbucketSrc">BitBucket </a> (DHS users) before completing the form. <br><br> -->
Refer to the <a title="ACRT User Guide" href="./Resources/ACRTTrainingManual.pdf" target="_blank" id="helpID">ACRT User Guide </a> for complete instructions.
<p > <!-- id="instr" -->
<strong>Tool Tips:</strong> <br>
<ol>
<li>Load a JSON Trusted Tester v.4 or Trusted Tester v.5 (TT4 or TT5) Success Criteria template.</li>
<li>Use 'Skip to main content' link or keyboard shortcut Alt+M to go to go main content.</li>
<li>Expand Product, Test Environment, and Tester Sections to enter information.</li>
<li>Complete all (<span class="required"> asterisk) required form fields </span>in Product and Testing information sections.</li>
<li>You can customize JSON Success Criteria templates with pre-populated information (e.g., Product Section) for future use.</li>
<li> If needed, open a copy of the<a style="display: inline-block;" title="Trusted Tester Test Process" href= "https://www.dhs.gov/sites/default/files/publications/trusted_tester_test_process_v5_0_aug_16_2019.pdf" target="_blank" id="tstinstrID" ><u>Trusted Tester Test Process</u>.</a> </li>
<li>Trusted Testers should coordinate with their IT Project Manager regarding remediation details.</li>
</ol>
</p><span id='selectFileHd' ng-hide = "fileInput1" >
<label for="fileinput" ><strong> Select template or test results JSON file </strong></label> <br>
<input type="file" class="input" id="fileinput" name="Browse Input File" title="Please select valid file" ng-model='selectedFile' onchange="angular.element(this).scope().fileNameChanged(this)" accept=".json"> <br> <!--ng-click ="fileInput();"-->
</span>
<br>
<strong > <span id="selMsg" ng-show="fileInput1"> </span></strong>
<br><br>
<span id="hideLoad" ><label for="loadFile" ng-show="fileInput1" ><strong> Load selected file</strong> </label> <br> <button ng-show="fileInput1" id='button' class="button" ng-model="loadbtn" ng-click="loadFile();" id='loadFile' name="Load Data In this Form" ng-model-options="{ updateOn: 'click', debounce: { 'default': 20, 'blur': 0 }}">Load File </button> </span>
<p> <img ng-show="fileInput1" id="dwnldConfm" ng-src ="./Resources/chkMrk.jpg" ng-if="dataLoaded" width="20" height="20" alt="checkmark" onerror="this.style.display='none';">
<span id="msg"><strong > </strong></span>
</p>
</div>
<main style="margin-left: 1em;">
<form id="webAppIntakeform" name="Intake form to capture test results" >
<br>
<div id="hdnMsgId">
<!-- <p ng-if="edit">
<strong class="hdnMsg">Please edit/update as needed below. </strong>
</p> -->
<p ng-show="original">
<!--<strong class="hdnMsg"> Please fill all required fields to save information from this page. </strong> -->
<strong > Please fill all required fields to save information from this page. </strong>
<br>A red asterisk <strong><span class="required"> </strong> </span> indicates a <strong> required</strong> field.
</p>
</div>
<!--
<p> <strong> Note: </strong> <br>
<ul>
<li> Expand each section below to enter required information.</li>
</ul> </p> -->
<div ng-show="displayIt">
<fieldset style="margin-left: 1em;height: auto;">
<legend>
<h2> <span class="required"> Product </h2></legend>
<button class="collapsible" title="Show or Hide Product Section" onclick="expandCollapse1()"><div id="expandCollapse1"> <i class="up"></i> Show Product Section</div> </button>
<div class="content">
<div class="divSpace" id="productInfo" >
<label for="productID" class="required"> Product Name (Required<span ng-if="acrtInputForm.productName.$valid" >, 50 chars max</span>): </label> <input type="string" name= "productName" title="50 Chars max" ng-model="productID" class= "betnTags" id="productID" placeholder="Product Name, 50 Chars max" ng-maxlength="50" size="50" limit-to="50">
<br><label for="versionID" class="required"> Product Version (Required <span ng-if="acrtInputForm.ProductVersion.$valid" >, 50 chars max</span> ): </label> <input type="string" ng-model="versionID" class= "betnTags" id="versionID" name="ProductVersion" placeholder="Product Version, 50 Chars max" title="50 Char max" ng-maxlength="50" size="50" limit-to="50">
<br> <label for="ownerID">Product Owner/Vendor<span ng-if="acrtInputForm.ProductOwner.$valid" >(50 chars max)</span>: </label> <input type="string" ng-model="ownerID" class= "betnTags" id="ownerID" name="ProductOwner" placeholder="Product Owner, 50 Chars max" title="50 Chars max" ng-maxlength="50" size="50" limit-to="50"> <br>
<label for="productType"> Product Type: </label>
<select name="Type of Product" title="Product type {{default_productType}}" ng-model="productType" id="productType" >
<option value="">{{default_productType}}</option>
<option ng-repeat="result in testProductTypes" value="{{result.name}}">{{result.name}}</option>
</select>
<span ng-show="productType=='Other'">
Please enter <span ng-if="acrtInputForm.OtherProductType.$valid" >(100 chars max)</span><input type="string" placeholder="Other Product, 100 chars max." ng-model="otherProduct" id="otherProduct" name="OtherProductType" ng-maxlength="100" title="100 Chars max" size="100" limit-to="100">
</span>
<br><br><label for="urlID">Location <span ng-if="acrtInputForm.Location.$valid" >(50 chars max)</span>: </label> <input type="string" ng-model="urlID" id="urlID" placeholder="location, 150 chars max" name="Location" title="150 Chars max" ng-maxlength="150" size="150" limit-to="150">
<br>
<br><label for="prodDescID" class="required"> Product description (Required <span ng-if="acrtInputForm.ProductDescription.$valid" >, 1000 chars max</span>) : </label><br>
<textarea rows="4" cols="90" type="text" ng-model="prodDescID" class="txtarea" id="prodDescID" placeholder="Product Description, 1000 chars max" name="ProductDescription" title="1000 Chars max" ng-maxlength="1000" limit-to="1000" required> </textarea>
<br><br><br><label for="prdNteDescID"> Notes <span ng-if="acrtInputForm.Notes.$valid" >(1000 chars max)</span>:</label><br>
<textarea rows="4" cols="90" type="text" ng-model="prdNteDescID" class="txtarea" id="prdNteDescID" name="Notes" title="1000 Chars max" placeholder="Notes, 1000 chars max" ng-maxlength="1000" limit-to="50"> </textarea> <br>
</div> </div>
</fieldset></br>
<fieldset style="margin-left: 1em;">
<legend>
<h2> <span class="required"> Testing Information </h2>
</legend>
<button class="collapsible" title="Show or Hide Testing Information section" onclick="expandCollapse3()"> <div id="expandCollapse3"> <i class="up"></i> Show Testing Information Section</div> </button>
<div class="content">
<div class="divSpace" id="testersInfo" >
<label for="CompanyName" class="required"> Company Name (Required<span ng-if="acrtInputForm.CompanyName.$valid" >, 100 chars max</span>): </label> <input type="string" ng-model="companyname" title="100 Chars max" placeholder ="Company Name, 100 chars max" id="companyname" name="CompanyName" ng-maxlength="100" size="100" limit-to="100">
<br><label for="firstname" class="required"> Tester's First Name (Required <span ng-if="acrtInputForm.TesterFirstName.$valid" >, 50 chars max</span>): </label> <input type="string" ng-model="firstname" placeholder ="First Name, 50 chars max" class= "betnTags" id="firstname" name="TesterFirstName" title="50 Chars max" ng-maxlength="50" size="50" limit-to="50">
<br><label for="lastname" class="required"> Tester's Last Name (Required <span ng-if="acrtInputForm.TesterLastName.$valid" >, 50 chars max</span>): </label> <input type="string" ng-model="lastname" placeholder ="Last Name, 50 chars max" class= "betnTags" id="lastname" name="TesterLastName" title="50 Chars max" ng-maxlength="50" size="50" limit-to="50">
<br><label for="testerID"> Trusted Tester ID <span ng-if="acrtInputForm.TrustedTesterId.$valid" >(50 chars max)</span>: </label> <input type="string" ng-model="testerID" class= "betnTags" placeholder ="ID, 50 chars max" id="testerID" name="TrustedTesterId" title="50 Chars max" ng-maxlength="50" limit-to="50">
<br> <label for="testerContact" class="required"> Tester's Email (Required <span ng-if="acrtInputForm.TesterContact.$valid" >, 50 chars max</span>): </label> <input type="string" ng-model="testerContact" placeholder ="Contact, 50 chars max" class= "betnTags" id="testerContact" name="TesterContact" title="50 Chars max" ng-maxlength="50" size="50" limit-to="50">
<br><label for="testScope" > Testing Scope <span ng-if="acrtInputForm.TestScope.$valid" >(1000 chars max)</span>:</label><br> <textarea rows="4"cols="90"type="text"ng-model="testScope"class="txtarea"id="testScope"name="TestScope" placeholder="test scope, 1000 chars max" title="1000 Chars max" ng-maxlength="1000" limit-to="1000"></textarea>
<br><br> Testing Method: <strong>{{selected_name_tstprcss}} </strong> Version <strong>{{evlMthdVrsn}} </strong>
<!-- <select name=" Evaluation Method " ng-model="selected_name_tstprcss" id="evalMthd" >
<option value="" selected disabled hidden>{{default_evalMethod}}</option>
<option ng-repeat="result in optiontstprcss" value="{{result.name}}">{{result.name}}</option>
</select> -->
<!--<label for="evlMthdVrsn" class="required" >Version: </label>
<select name="Test Version Used" ng-model="evlMthdVrsn" id="evlMthdVrsn" ng-click="selectTstVrsn()" >
<option value="">{{default_tstVrsn}}</option>
<option ng-repeat="result in optiontstvrsn" value="{{result.name}}">{{result.name}}</option>
</select>
<input type="string" class="required" ng-model="selected_name_tstprcss" class= "betnTags" id="evalMthd" name="Evaluation Method" ng-maxlength="50" ng-readonly="true">
<input type="string" class="required" ng-model="evlMthdVrsn" class= "betnTags" id="evlMthdVrsn" name="Evaluation Method Version" ng-maxlength="50" ng-readonly="true">
-->
</div> </div>
</fieldset><br>
<fieldset style="margin-left: 1em;">
<legend>
<h2> Test Environment </h2>
</legend>
<button class="collapsible" title="Show or HIde Test Environment Section" onclick="expandCollapse2()"><div id="expandCollapse2"> <i class="up"></i> Show Test Environment Section</div> </button>
<div class="content">
<div class="divSpace" id="sysInfo" >
<div class="left-div">
<label for="cmptblity">Browser Compatibility View: </label>
<select name="Compatibility View Setting Options" ng-model="selected_name_cmpblty" id="cmptblity" title="Compatibility View Setting {{default_compatibilitySetting}}" >
<option value="">{{default_compatibilitySetting}}</option>
<option ng-repeat="result in optionscmpblty" value="{{result.name}}">{{result.name}}</option>
</select>
<br><br>
<label class="span1" > Browser </label>
<table class="table" id="th4" >
<tbody>
<tr scope="row">
<th style="width: 200px" scope="col" title="Browser Type" > Browser Type </th>
<th style="width: 200px" scope="col" title="Browser Version"> Browser Version </th>
</tr> <tr scope="row">
<td style="width: 180px" title="Internet Explorer" ng-model="chkBoxValIE" >
<label for="ie" class='notbold'>Internet Explorer
<input ng-checked="chkBoxValIE" type="checkbox" ng-model="checkboxModel.value1" id="ie" ng-true-value="'Internet Explorer'" ng-false-value="''">
</label>
</td>
<td style="width: 200px" title="Internet Explorer {{default_ieVersn}}">
<label for="ieeVersnIDTest"> Version: </label>
<select name="IE version" title="Internet Explorer {{default_ieVersn}}" ng-model="selected_name_ieVersn" id="ieeVersnIDTest" ng-click="tstIEClicked()">
<option value="" selected disabled hidden>{{default_ieVersn}}</option>
<option ng-repeat="result in optionieVersn" value="{{result.name}}">{{result.name}}</option>
</select>
</td>
</tr>
<tr scope="row">
<td style="width: 180px" name="Edge Type" title="Edge" ng-model="chkBoxValEdg" >
<label for="ed" > Edge
<input ng-checked="chkBoxValEdg" type="checkbox" ng-model="checkboxModel.value5" id="ed" ng-true-value="'Edge'" ng-false-value="''">
</label>
</td>
<td style="width: 200px" >
<label for="edVersnIDTest"> Version: </label>
<select name="Edge version" title="Edge {{default_edgVersn}}" ng-model="selected_name_edVersn" id="edVersnIDTest" ng-click="tstEdgeClicked()">
<option value="" selected disabled hidden>{{default_edgVersn}}</option> <!-- default_edgVersn -->
<option ng-repeat="result in optionedVersn" value="{{result.name}}">{{result.name}}</option>
</select>
</td>
</tr>
<tr scope="row">
<td style="width: 180px" title="Chrome" ng-model="chkBoxValChrm">
<label for="chrome" >Chrome
<input ng-checked="chkBoxValChrm" type="checkbox" ng-model="checkboxModel.value2" id="chrome" title="Chrome" ng-true-value="'Chrome'" ng-false-value="''">
</label>
</td>
<td style="width: 200px" title="chrome {{default_chrVersn}}">
<label for="chVersnIDTest"> Version: </label>
<select name="chrome Versn" title="chrome {{default_chrVersn}}" ng-model="selected_name_chVersn" id="chVersnIDTest" ng-click="tstChromeClicked()">
<option value="" selected disabled hidden>{{default_chrVersn}}</option>
<option ng-repeat="result in optionchVersn" value="{{result.name}}">{{result.name}}</option>
</select>
</td>
</tr>
<tr>
<td style="width: 180px" title="Safari" ng-model="chkBoxValSaf" >
<label for="safari" >Safari
<input ng-checked="chkBoxValSaf" type="checkbox" ng-model="checkboxModel.value3" id="safari" title="Safari" ng-true-value="'Safari'" ng-false-value="''">
</label for="" >
</td>
<td style="width: 200px" title= "Safari {{default_sfVersn}}">
<label for="sfVersnIDTest"> Version: </label>
<select title="Safari {{default_sfVersn}}" ng-model="selected_name_sfVersn" id="sfVersnIDTest" ng-click="tstSafariClicked()">
<option value="" selected disabled hidden>{{default_sfVersn}}</option>
<option ng-repeat="result in optionsfVersn" value="{{result.name}}">{{result.name}}</option>
</select>
</td>
</tr>
<tr>
<td style="width: 180px" title="Firefox" ng-model="chkBoxValFrfx" >
<label for="firefoxTest" >Firefox
<input ng-checked="chkBoxValFrfx" type="checkbox" ng-model="checkboxModel.value4" id="firefoxTest" title="Firefox" ng-true-value="'Firefox'" ng-false-value="''">
</label >
</td>
<td style="width: 200px" title="Firefox {{default_frfxVersn}}">
<label for="fxVersnIDTest"> Version: </label>
<select title="Firefox {{default_frfxVersn}}" ng-model="selected_name_fxVersn" id="fxVersnIDTest" ng-click="tstFirefoxClicked()">
<option value="" selected disabled hidden>{{default_frfxVersn}}</option>
<option ng-repeat="result in optionfxVersn" value="{{result.name}}">{{result.name}}</option>
</select>
</td>
</tr>
<tr>
<td style="width: 180px" title="Other Browser" ng-model="chkBoxValOthr" >
<div class="show">
<label for="otherBrowserIDTest"> Other Browser <input ng-checked= "chkBoxValOthrBrwsr1" type="checkbox" id="otherBrowserIDTest" name="Other Browser" title="Other Browser" ng-model="otherBrowser" > </label>
</span>
<TD>
<label for="entOthrBrsrID"><span class="show" ng-show="otherBrowser"> Type: <input type="string" ng-model="entOthrBrsrID" class= "betnTags" id="entOthrBrsrID" placeholder="Type, 50 Max chars." name="Other Browser type" ng-maxlength="50" title="Type, 50 Max chars." limit-to="50" > </label> <br>
<label for="entOthrBrsrIDVrsn"><span class="show" ng-show="otherBrowser"> Version: <input type="string" ng-model="entOthrBrsrIDVrsn" class= "betnTags" placeholder="Version, 50 Max chars." id="entOthrBrsrIDVrsn" name="Other Browser version" ng-maxlength="50" limit-to="50" title="Version, 50 Max chars."> </label>
</td>
</div>
</td>
</tr>
</tbody>
</table>
<br> </br>
</div>
</br>
<div class="right-div">
<label class="span1" > Operating System</label> </br></br>
<label for="window" ng-model="chkBoxValWin" >Window OS:
<input ng-checked="chkBoxValWin" type="checkbox" title="window OS" ng-model="checkboxModel.value6" id="window" ng-true-value="'Window OS'" ng-false-value="''">
</label>
<label for="wnVersnIDTest"> Version: </label>
<select title="{{default_WindVrsn}}" ng-model="selected_name_wnVersn" id="wnVersnIDTest" ng-click="tstWinOSClicked()">
<option value="" selected disabled hidden>{{default_WindVrsn}}</option>
<option ng-repeat="result in optionwnVersn" value="{{result.name}}">{{result.name}}</option>
</select>
</br></br>
<label for="ios" ng-model="chkBoxValMac" >MAC OS:
<input ng-checked="chkBoxValMac" type="checkbox" title="MAC OS" ng-model="checkboxModel.value7" id="ios" ng-true-value="'IOS'" ng-false-value="''">
</label>
<label for="iosVersnIDTest"> Version: </label>
<select title="Mac {{default_MacVrsn}}" ng-model="selected_name_iosVersn" id="iosVersnIDTest" ng-click="tstIOSClicked()">
<option value="" selected disabled hidden>{{default_MacVrsn}}</option>
<option ng-repeat="result in optioniosVersn" value="{{result.name}}">{{result.name}}</option>
</select>
</br></br>
<div class="show">
<label for="otherWindowID">Other Operating System
<input ng-checked= "chkBoxValOthrWndw1" id="otherWindowID" name="Other Operating System" type="checkbox" ng-model="otherWindow" ng-true-value="'Other window'" ng-false-value="''">
</label>
<br>
<span ng-show="otherWindow">
<label for="OtherOSType"> OS Name <span ng-if="acrtInputForm.OtherOSName.$valid" >50 chars max</span> <input type="string" ng-model="entOthrWindID" class= "betnTags" placeholder="50 Char Max." title="50 Char Max." id="OtherOSName" name="OtherOSName" ng-maxlength="50" size="50" limit-to="50" ></label><br>
<label for="OtherOSVersion">OS Version <span ng-if="acrtInputForm.OtherOSVersion.$valid" >50 chars max</span> <input type="string" ng-model="entOthrWindVrsn" placeholder="50 Char Max." title="50 Char Max." class= "betnTags" id="OtherOSVersion" name="OtherOSVersion" size="50" ng-maxlength="50" limit-to="50"></label>
</span> </div>
</div>
</div> </div>
</fieldset></br>
</br> </br>
<!-- <input type="checkbox" id="rmdtlnd" name="Remediation Details" title="Remediation Details" ng-model="selected_name_rmdtn" ng-init="selected_name_rmdtn='No'" ng-true-value="'Yes'" ng-false-value="'No'" ng-click="remediationDetails()"> -->
<!-- <div ng-if="draftReport">
<select name="Remediation Details" ng-model="selected_name_rmdtn" title="Remediation Details" id="rmdtlnd" ng-change="remediationDetails()">
<option ng-repeat="result in optionsglbl" value="{{result.name}}">{{result.name}}</option>
</select> </div> -->
<h3> Test Results Form </h3>
<label for="alerts" name="chkUnchk" id="chkUnchk"><strong>Disable</strong> Add Child Issue/Remove Child Issue Alerts within the Test Results form. </label>
<input type="checkbox" id="alerts" title="Disable Add Child Issue/Remove Child Issue Alerts within the Test Results form." ng-model="checkboxModel.alerts" ng-init="checkboxModel.alerts='on'" ng-true-value="'off'" ng-false-value="'on'">
<br><br>
<input type="checkbox" name="Remediation Details" ng-model="selected_name_rmdtn" title="Remediation details, Check user manual section 5.1 for details." id="rmdtlnd" ng-change="remediationDetails()" ng-true-value="'Yes'" ng-false-value="'No'">
<label for="rmdtlnd" ><strong>Show Remediation Detail Columns </strong></label>
<div id="rmdTbleDiv">
<table style="height: 1000px;" id="rmdTble" >
<caption id="tableCaption"> Report will be marked as Draft until results are entered for each test
<span class="visuallyhidden"> This table has information tester's need to select test results. Make sure to select or fill all required fields </span>
</caption>
<thead>
<tr>
<th scope="col" title="Issue Number"><div style="width: 96px"> Issue Number </div> </th>
<th scope="col" title="Test Name" > <div style="width: 83px">Test Name</div> </th>
<th scope="col" title="Test ID" > <div style="width: 31px !important" >Test ID </div> </th>
<th scope="col" title="Test Condition"><div style="width: 198px"> Test Condition </div></th>
<th scope="col" title="Test Result" > <div style="width: 118px"> Test Result </div></th>
<th scope="col" title="Browser" > <div style="width: 234px"> Browser </div> </th>
<th scope="col" title="Tester's Comment" > <div style="width: 198px"> Tester Comments </div> </th>
<th scope="col" title="Tester's Comment" > <div style="width: 198px"> Location/Screen </div> </th>
<th scope="col" > <div style="width: 248px">Screenshot </div> </th>
<th style="width: 67px !important" scope="col" title="Global Issue" >Global Issue? </th>
<th ng-show="selected_name_rmdtn" scope="col" title="Remediation Details" ><div style="width: 198px"> Remediation Details </div></th>
<th ng-show="selected_name_rmdtn" scope="col" > <div style="width: 248px">Remediation Screenshot </div> </th>
<th ng-show="selected_name_rmdtn" scope="col" title="Remediation Date" ><div style="width: 148px"> Remediation Date </div></th>
<th scope="col" title="Remediation Date" ><div style="width: 135px">Add Child Issue </div></th>
<!-- <th ><div style="width: 10px"> </div></th> -->
</tr>
</thead>
<tbody ng-repeat="record in jsonData">
<tr ng-repeat="test in record.Criteria" >
<th > <div style="width: 97px" title="Issue Number" > Issue {{$index+1}} </div> <!-- ng-if='original' -->
<!-- <div ng-if='edit' style="width: 97px" title="Issue Number" >Issue {{counterCollection[$index]}} </div> -->
</th>
<th scope="row" title="Test Name" ><div class="widetd1">{{test.TestName}}</div></th>
<td ><div class="widetd2" id="testID{{$index}}" title="Test ID"> {{test.TestID}} </div> </td>
<td > <div class="widetd3" id="testConditionID{{$index}}" title="Test Condition" >{{test.TestCondition}}</div> </td>
<td style="width: 50px" title="Selected test result is {{default_SelectedResult[$index]}}" name="Test Result">
<!--<label for="{{$index}}"> Select Result: </label> -->
<span ng-if="menu1[$index] == 'menu1'" ng-keypress ="elemntClicked2([$index])">
<select class="resultOptions"
ng-model="selected_id_tstrslt$index"
ng-model="selected_name_tstgrp[$index]"
ng-options="o.id as o.name for o in optionsTstrslt1"
ng-change="selected_name_tstgrp[$index]=(optionsTstrslt1|filter:{id:selected_id_tstrslt$index})[0].name" id="{{$index}}" onchange="elemntClicked2([$index])" >
<option value="" selected disabled hidden>{{default_SelectedResult[$index]}}</option> </select>
</span>
<span ng-if="menu1[$index] == 'menu2' " ng-keypress ="elemntClicked2([$index])" >
<select class="resultOptions"
ng-model="selected_id_tstrslt$index"
ng-model="selected_name_tstgrp[$index]"
ng-options="o.id as o.name for o in optionsTstrslt"
ng-change="selected_name_tstgrp[$index]=(optionsTstrslt|filter:{id:selected_id_tstrslt$index})[0].name" id="{{$index}}" ng-click="elemntClicked2([$index])" >
<option value="" selected disabled hidden>{{default_SelectedResult[$index]}}</option> </select>
</span>
<span ng-if="menu1[$index] == 'menu3' " ng-keypress ="elemntClicked2([$index])">
<select class="resultOptions"
ng-model="selected_id_tstrslt$index"
ng-model="selected_name_tstgrp[$index]"
ng-options="o.id as o.name for o in optionsTstrslt2"
ng-change="selected_name_tstgrp[$index]=(optionsTstrslt2|filter:{id:selected_id_tstrslt$index})[0].name" id="{{$index}}" ng-click="elemntClicked2([$index])" >
<option value="" selected disabled hidden>{{default_SelectedResult[$index]}}</option> </select>
</span>
<span ng-if="menu1[$index] == 'menu4' " ng-keypress ="elemntClicked2([$index])">
<select class="resultOptions" ng-model="selected_name_tstgrp[$index]" id="{{$index}}" ng-click="rsltSlctionClicked([$index]);">
<option value="" > Does Not Apply </option>
<option ng-repeat="result in optionsTstrslt4" value="{{result.name}}">{{result.name}}</option>
<option value="" selected disabled hidden>{{default_SelectedResult[$index]}}</option> </select>
</span>
<span ng-if="menu1[$index] == 'menu5' " ng-keypress ="elemntClicked2([$index])">
<select class="resultOptions"
ng-model="selected_id_tstrslt$index"
ng-model="selected_name_tstgrp[$index]"
ng-options="o.id as o.name for o in optionsTstrslt3"
ng-change="selected_name_tstgrp[$index]=(optionsTstrslt3|filter:{id:selected_id_tstrslt$index})[0].name" id="{{$index}}" ng-click="elemntClicked2([$index])" >
<option value="" selected disabled hidden>{{default_SelectedResult[$index]}}</option> </select>
</span>
<span ng-if="menu1[$index] == 'menu6' " ng-keypress ="elemntClicked2([$index])">
<select class="resultOptions"
ng-model="selected_id_tstrslt$index"
ng-model="selected_name_tstgrp[$index]"
ng-options="o.id as o.name for o in optionsTstrslt5"
ng-change="selected_name_tstgrp[$index]=(optionsTstrslt5|filter:{id:selected_id_tstrslt$index})[0].name" id="{{$index}}" ng-click="elemntClicked2([$index])" >
<option value="" selected disabled hidden>{{default_SelectedResult[$index]}}</option> </select>
</span>
<span ng-if="menu1[$index] == undefined " ng-keypress ="elemntClicked2([$index])">
<select class="resultOptions"
ng-model="selected_id_tstrslt$index"
ng-model="selected_name_tstgrp[$index]"
ng-options="o.id as o.name for o in optionsTstrslt6"
ng-change="selected_name_tstgrp[$index]=(optionsTstrslt6|filter:{id:selected_id_tstrslt$index})[0].name" id="{{$index}}" ng-click="elemntClicked2([$index])" >
<option value="" selected disabled hidden>{{default_SelectedResult[$index]}}</option> </select>
</span>
</td>
<td > <div style="width: 236px">
<label >
<input name="Browser Types" type="checkbox" ng-model="checked20[$index]" ng-click ="brsrChkBoxClicked($index)" >
Change Browser for this test result.
<br />
</label>
<div ng-show="checked20[$index]" >
<span style="width: 200px" title="Internet Explorer" ng-model="chkBoxValIE1[$index]" >
<label for="iel[$index]" >IE:
<input ng-checked="chkBoxValIE1[$index]" type="checkbox" title="Internet Explorer" ng-model="checkboxModel.value14[$index]" ng-click="ieChekBox($index)" id="ie{{$index}}" ng-true-value="'Internet Explorer'" ng-false-value="''">
</label>
</span>
<span style="width: 200px" title="IE Version {{default_ieVersn1[$index]}}">
<label for="ieeVersnID3[$index]">Ver. </label>
<select
ng-model="selected_id_ieVersn1[$index]"
ng-model="selected_name_ieVersn1[$index]"
ng-options="o.id as o.name for o in optionieVersn"
ng-change="selected_name_ieVersn1[$index]=(optionieVersn|filter:{id:selected_id_ieVersn1[$index]})[0].name" title="IE Version {{default_ieVersn1[$index]}}">
<option value="" selected disabled hidden>{{default_ieVersn1[$index]}}</option> </select>
</span> <br>
<span style="width: 200px" title="Edge " ng-model="chkBoxValEdg1[$index]" >
<label for="edl[$index]" >Edge:
<input ng-checked="chkBoxValEdg1[$index]" type="checkbox" ng-model="checkboxModel.value51[$index]" ng-click="edgChekBox($index)" id="edl{{$index}}" title="Edge" ng-true-value="'Edge'" ng-false-value="''">
</label>
</span>
<span style="width: 200px" title="Edge Version {{default_edgVersn1[$index]}}">
<label for="edVersnIDl[$index]">Ver. </label>
<select
ng-model="selected_id_edVersn1[$index]"
ng-model="selected_name_edVersn1[$index]"
ng-options="o.id as o.name for o in optionedVersn"
ng-change="selected_name_edVersn1[$index]=(optionedVersn|filter:{id:selected_id_edVersn1[$index]})[0].name" title="Edge Version {{default_edgVersn1[$index]}}">
<option value="" selected disabled hidden>{{default_edgVersn1[$index]}}</option> </select>
</span><br>
<span style="width: 200px" title="Chrome" ng-model="chkBoxValChrm1[$index]">
<label for="chromel[$index]" >Chrome:
<input ng-checked="chkBoxValChrm1[$index]" type="checkbox" ng-model="checkboxModel.value21[$index]" ng-click="chromeChekBox($index)" id="chromel{{$index}}" title="Chrome" ng-true-value="'Chrome'" ng-false-value="''">
</label>
</span>
<span style="width: 200px" title="Chrome Version {{default_chrVersn1[$index]}}">
<label for="chVersnIDl[$index]">Ver. </label>
<select
ng-model="selected_id_chVersn1[$index]"
ng-model="selected_name_chVersn1[$index]"
ng-options="o.id as o.name for o in optionchVersn"
ng-change="selected_name_chVersn1[$index]=(optionchVersn|filter:{id:selected_id_chVersn1[$index]})[0].name" title="Chrome Version {{default_chrVersn1[$index]}}">
<option value="" selected disabled hidden>{{default_chrVersn1[$index]}}</option> </select>
</span><br>
<span style="width: 200px" title="Safari" ng-model="chkBoxValSaf1[$index]" >
<label for="safaril[$index]" >Safari:
<input ng-checked="chkBoxValSaf1[$index]" type="checkbox" ng-model="checkboxModel.value31[$index]" ng-click="safariChekBox($index)" id="safaril{{$index}}" title="Safari" ng-true-value="'Safari'" ng-false-value="''">
</label for="" >
</span>
<span style="width: 200px" title="Safari Version {{default_sfVersn1[$index]}}">
<label for="sfVersnIDl[$index]">Ver. </label>
<select
ng-model="selected_id_sfVersn1[$index]"
ng-model="selected_name_sfVersn1[$index]"
ng-options="o.id as o.name for o in optionsfVersn"
ng-change="selected_name_sfVersn1[$index]=(optionsfVersn|filter:{id:selected_id_sfVersn1[$index]})[0].name" title="Safari Version {{default_sfVersn1[$index]}}">
<option value="" selected disabled hidden> {{default_sfVersn1[$index]}}</option> </select>
</span>
<br>
<span style="width: 200px" title="Firefox" ng-model="chkBoxValFrfx1[$index]" >
<label for="firefoxl[$index]" >Firefox:
<input ng-checked="chkBoxValFrfx1[$index]" type="checkbox" ng-model="checkboxModel.value41[$index]" ng-click="frfxChekBox($index)" id="firefoxl{{$index}}" title="Firefox" ng-true-value="'Firefox'" ng-false-value="''">
</label >
</span>
<span style="width: 200px" title="Firefox Version {{default_frfxVersn1[$index]}}">
<label for="fxVersnIDl[$index]">Ver. </label>
<select
ng-model="selected_id_fxVersn1[$index]"
ng-model="selected_name_fxVersn1[$index]"
ng-options="o.id as o.name for o in optionfxVersn"
ng-change="selected_name_fxVersn1[$index]=(optionfxVersn|filter:{id:selected_id_fxVersn1[$index]})[0].name" title="Firefox Version {{default_frfxVersn1[$index]}}">
<option value="" selected disabled hidden>{{default_frfxVersn1[$index]}}</option> </select>
</span> <br>
<span style="width: 200px" title="Browser Type" ng-model="chkBoxValOthrl[$index]" >
<div class="show">
<label for="otherBrowserIDl[$index]">Other:<input ng-checked="chkBoxValOthrl[$index]" id="otherBrowserIDl{{$index}}" name="Other Browser" ng-click="otherChekBox($index)" type="checkbox" ng-model="otherBrowserl[$index]" ng-true-value="'Other Browser'" ng-false-value="''">
</label>
</span> <br>
<span>
<label for="otherBrowserl[$index]"><span class="show" ng-show="otherBrowserl[$index]"> Type:<input ng-model="entOthrBrsrIDVrsnl[$index]" class= "betnTags" id="otherBrowserl[$index]" name="Other Browser type" ng-maxlength="50" title="Other Browser" size="20"> </label> <br>
<label for="entOthrBrsrIDVrsn"><span class="show" ng-show="otherBrowserl[$index]">Ver.<input ng-model="entOthrBrsrIDl[$index]" class= "betnTags" id="entOthrBrsrIDl[$index]" name="Other Browser version" ng-maxlength="50" title="Other Browser" size="20"> </label>
</span>
</div>
</span><br>
</div>
</div>
</td>
<td > <div class="widetd3"> <textarea rows="4" cols="25" type="text" ng-model="testerCommentID[$index]" class="txtarea" placeholder="comments,1000 chars max" ng-maxlength="1000" title="Tester's Comment, 1000 chars max" limit-to="1000"> </textarea> </div> </td>
<td > <div class="widetd3"> <textarea rows="4" cols="25" type="text" ng-model="location[$index]" class="txtarea" placeholder="location, 1000 chars max" title="Location/Screen, 1000 chars max" ng-maxlength="1000" limit-to="1000"> </textarea> </div> </td>
<td > <div class="widetd8">
<br> <input ng-if="browseImageOption[$index]" type="file" ng-model='imgCnvrsn[$index]' class='addChild' title="Browse to screenshot images" onchange="angular.element(this).scope().uploadImage(this)" accept=".jpg,.jpeg,.icon,.png,.svg,.gif" /> <br>
<img id="image{{$index}}" ng-if="imageCapturedStored[$index]" ng-src = {{test.ImageSrc}} alt="" title="Browse to screenshot images" class="large-image" width="50" height="50" ng-click="zoom($index)" onerror="this.style.display='none';">
<img id="image{{$index}}" ng-if="imageCaptured[$index]" ng-src = {{imgCnvrsnCurrentValue[$index]}} alt="" title="Browse to screenshot images" class="large-image" width="50" height="50" ng-click="zoom($index)" onerror="this.style.display='none';">
<img id="image{{$index}}" ng-if="removeClicked[$index]" ng-src = {{imgCnvrsnCurrentValue[$index]}} alt="" title="Browse to screenshot images" class="large-image" width="50" height="50" ng-click="zoom($index)" onerror="this.style.display='none';">
<div id="{{$index}}" class="modal">
<span class="close" id="cls{{$index}}" >×</span>
<img class="modal-content" id="img{{$index}}">
<div class="caption" id="caption{{$index}}" ></div>
</div>
<br>
<div ng-show="displayRemove[$index]" id= {{ 'removeImage' + $index }} > <button ng-model='imgCnvrsn[$index]' title='Remove Image ' type="button" class='addChild' ng-click="removeImage([$index])">Remove Image </button> </div>
<!-- <div ng-if="browseImageOption[$index]"> <button ng-model='imgCnvrsn[$index]' title='Remove Image ' type="button" ng-click="removeImage([$index])">Remove Image </button> </div> -->
<!-- <div ng-if="imageCaptured[$index]"> <button ng-model='imgCnvrsn[$index]' title='Remove Image ' type="button" ng-click="removeImage([$index])">Remove Image </button> </div> -->
</div>
</td>
<td title="Global Issue {{default_glblRslt[$index]}}">
<div style="width: 55px">
<select
ng-model="selected_id_glbl[$index]"
ng-model="selected_name_glbl[$index]"
ng-options="o.id as o.name for o in optionsglbl"
ng-change="selected_name_glbl[$index]=(optionsglbl|filter:{id:selected_id_glbl[$index]})[0].name" id= "{{ 'glblResult' + $index }}" title="Global Issue {{default_glblRslt[$index]}}">
<option value="" selected disabled hidden>{{default_glblRslt[$index]}}</option> </select>
</div>
</td>
<td title="Remediation Details" ng-show="selected_name_rmdtn"> <div style="width: 200px">
<!--<label for="selectorr111[$index]"> Add Remediation Details <input style="width: 150px;" id="selectorr111[$index]" name="Remediation Details" type="checkbox" ng-model="checked10" > </label> <br />
<div ng-show="checked10"> -->
<textarea rows="4" cols="50" id= "{{ 'selectorrr111' + $index }}" placeholder="Remediation Details, 1000 chars max" type="text" ng-model="rmdatnDtlID[$index]" class="txtarea" title="Remediation Details, 1000 chars max" ng-maxlength="1000" limit-to="1000"> </textarea>
</div>
</td>
<td ng-show="selected_name_rmdtn" > <div class="widetd8">
<br> <input ng-if="browseImageOption[$index]" type="file" ng-model='imgCnvrsn2[$index]' class='addChild' title="Browse to screenshot images" onchange="angular.element(this).scope().uploadImage2(this)" accept=".jpg,.jpeg,.icon,.png,.svg,.gif" /> <br>
<img id="image1{{$index}}" ng-if="imageCapturedStored2[$index]" ng-src = {{test.ImageSrc2}} alt="" title="Browse to screenshot images" class="large-image" width="50" height="50" ng-click="zoom([$index])" onerror="this.style.display='none';">
<img id="image1{{$index}}" ng-if="imageCaptured2[$index]" ng-src = {{imgCnvrsnCurrentValue2[$index]}} alt="" title="Browse to screenshot images" class="large-image" width="50" height="50" ng-click="zoom([$index])" onerror="this.style.display='none';">
<img id="image1{{$index}}" ng-if="removeClicked2[$index]" ng-src = {{imgCnvrsnCurrentValue2[$index]}} alt="" title="Browse to screenshot images" class="large-image" width="50" height="50" ng-click="zoom([$index])" onerror="this.style.display='none';">
<div id="rmd{{$index}}" class="modal">
<span class="close">×</span>
<img alt="" title="Selected Image" class="modal-content" id="img1{{$index}}">
<div class="caption" id="caption1{{$index}}" ></div>
</div><br>
<div ng-show="displayRemove2[$index]" id= {{ 'removeImage1' + $index }} > <button ng-model='imgCnvrsn2[$index]' title='Remove Image ' type="button" class='addChild' ng-click="removeImage2([$index])">Remove Image </button> </div>
</div>
</td>
<td title="Remediation Date" ng-show="selected_name_rmdtn" > <div style="width: 150px"> <input type="date" title="Remediation Date" ng-model="rmdatnDatelID[$index]" ng-click="dateTime([$index])" placeholder="mm/dd/yyyy" id="rmdatnDatelID{{$index}}" name="Remediation Date" />
</div>
</td>
<td>
</br> <div class="widetd7" > <button id="{{ 'PI'+indexCollection[$index] }}" class='addChild' type="button" title="Add child for {{test.TestID}}" ng-click="addIssue($index)">Add Child Issue {{test.TestID}}</button> </div>
<!--</br></br></br> <div class="widetd7" > <button ng-if="addedRow[$index]" id="{{ 'o'+indexCollection[$index] }}" title="Go to child issue for {{test.TestID}}" class='addChild' type="button" ng-click="goToChildIssue($index)" >Go to Child Issues *{{test.TestID}} </button> </div> -->
</td>
</tr>
<!-- section below will display child element at the end of table -->
<tr ng-repeat="Issue in Mul_Issues track by $index">
<td title="Issue Number"> <div style="width: 100px"> Issue {{newlyAddedIssuePosition[$index]}} </div> </td>
<th scope="row" title="Test Name" > <div class="widetd1"> {{Issue.InsrtTestName}} </div></th>
<td title="Test ID"><div class="widetd2"> {{Issue.InsrtTestID}} </div> </td>
<td title="Test Condition"><div class="widetd3"> {{Issue.InsrtTestCondition}}</div> <br/> <button id="{{ 'a'+indexCollection[$index] }}" class='addChild' type="button" title="Remove issue for {{Issue.InsrtTestID}} " ng-click="removeIssue($index)" >Remove Child Issue {{Issue.InsrtTestID}} </button> </td>
<td title="Issue Number"> <div style="width: 100px"> *Issue #{{indexCollection[$index]+1}}.{{$index+1}} </div> <br/> <button id="{{ 'p'+indexCollection[$index] }}"type="button" ng-click="removeIssue($index)" >Remove Issue </button>
<td style="width: 50px" title="Test Result" name="Test Result {{selected_name_tstgrp1[$index]}}">
<span ng-keypress ="elemntClicked4([$index])">
<select class="resultOptions"
ng-model="selected_id_tstrslt1[$index]"
ng-model="selected_name_tstgrp1[$index]"
ng-options="o.id as o.name for o in optionsTstrslt"
ng-change="selected_name_tstgrp1[$index]=(optionsTstrslt|filter:{id:selected_id_tstrslt1[$index]})[0].name" title="Test Result" id="{{ 'p'+$index}}" ng-click="elemntClicked4([$index])" >
<option value="" selected disabled hidden > </option> </select> <!-- {{Issue.InsrtTestResult}} -->
</span>
</td>
<td > <div style="width: 240px">
<input id= "{{ 'selectorrr1111' + $index }}" name="BrowserTypes" title="Change Browser for this test result" type="checkbox" ng-model="checked21[$index]" ng-click="brsrChkBoxClicked1([$index])" >
Change Browser for this test result
<br />
<div ng-show="checked21[$index]">
<label id="iiee[$index]" title="Internet Explorer" >IE:
<input type="checkbox" ng-checked="chkBoxValIE11[$index]" ng-model="checkboxModel.value141[$index]" ng-click="ieChekBox1($index)" id="iiee[$index]" title="Internet Explorer" ng-true-value="'Internet Explorer'" ng-false-value="''">
</label> <label for="iieeVersnID5[$index]">Ver. </label>
<select
ng-model="selected_id_ieVersn11[$index]"
ng-model="selected_name_ieVersn11[$index]"
ng-options="o.id as o.name for o in optionieVersn"
ng-change="selected_name_ieVersn11[$index]=(optionieVersn|filter:{id:selected_id_ieVersn11[$index]})[0].name" id=="iieeVersnID5[$index]" title="Explorer Version {{selected_name_ieVersn11[$index]}}">
<option value="" selected disabled hidden>Version </option> </select> </br>
<label for="eedd[$index]" >Edge:
<input type="checkbox" ng-checked="chkBoxValEdg11[$index]" ng-model="checkboxModel.value511[$index]" ng-click="edgChekBox1($index)" id="eedd[$index]" ng-true-value="'Edge'" ng-false-value="''">
</label>
<label for="eeddVersnID[$index]">Ver. </label>
<select
ng-model="selected_id_edVersn11[$index]"
ng-model="selected_name_edVersn11[$index]"
ng-options="o.id as o.name for o in optionedVersn"
ng-change="selected_name_edVersn11[$index]=(optionedVersn|filter:{id:selected_id_edVersn11[$index]})[0].name" title="Edge Version {{selected_name_edVersn11[$index]}}" id="edVersnID[$index]" ng-click="elemntClicked([$index])">
<option value="" selected disabled hidden>Version</option> </select> </br>
<label for="chromeee[$index]" > Chrome:
<input type="checkbox" ng-checked="chkBoxValChrm11[$index]" ng-model="checkboxModel.value211[$index]" ng-click="chromeChekBox1($index)" id="chromeee[$index]" ng-true-value="'Chrome'" ng-false-value="''">
</label>
<label for="chVersnIDdd[$index]">Ver. </label>
<select
ng-model="selected_id_chVersn11[$index]"
ng-model="selected_name_chVersn11[$index]"
ng-options="o.id as o.name for o in optionchVersn"
ng-change="selected_name_chVersn11[$index]=(optionchVersn|filter:{id:selected_id_chVersn11[$index]})[0].name" id="chVersnIDdd[$index]" title="Chrome Version {{selected_name_chVersn11[$index]}}">
<option value="" selected disabled hidden>Version</option></select> </br>
<label for="safariii[$index]" >Safari:
<input type="checkbox" ng-checked="chkBoxValSaf11[$index]" ng-model="checkboxModel.value311[$index]" ng-click="safariChekBox1($index)" id="safariii[$index]" ng-true-value="'Safari'" ng-false-value="''" >
</label for="" >
<label for="sfVersnIDdd[$index]">Ver. </label>
<select
ng-model="selected_id_sfVersn11[$index]"
ng-model="selected_name_sfVersn11[$index]"
ng-options="o.id as o.name for o in optionsfVersn"
ng-change="selected_name_sfVersn11[$index]=(optionsfVersn|filter:{id:selected_id_sfVersn11[$index]})[0].name" title="Safari Version {{selected_name_sfVersn11[$index]}}" id="sfVersnIDdd[$index]">
<option value="" selected disabled hidden>Version</option> </select> </br>
<label for="firefoxxx1" >Firefox:
<input type="checkbox" ng-checked="chkBoxValFrfx11[$index]" ng-model="checkboxModel.value411[$index]" ng-click="frfxChekBox1($index)" id="firefox[$index]" ng-true-value="'Firefox'" ng-false-value="''">
</label >
<label for="fxVersnID[$index]">Ver. </label>
<select
ng-model="selected_id_fxVersn11[$index]"
ng-model="selected_name_fxVersn11[$index]"
ng-options="o.id as o.name for o in optionfxVersn"
ng-change="selected_name_fxVersn11[$index]=(optionfxVersn|filter:{id:selected_id_fxVersn11[$index]})[0].name" title="Firefox Version {{selected_name_fxVersn11[$index]}}" id="fxVersnID[$index]">
<option value="" selected disabled hidden>Version</option> </select>
</br>
<div class="show">
Other:<input ng-checked="otherBrowser11[$index]" id="otherBrowserID111[$index]" name="Other Browser" type="checkbox" ng-model="otherBrowserID111[$index]" ng-click="otherChekBox1($index)">
<label for="entOthrBrsrID11[$index]"><span class="show" ng-show="otherBrowserID111[$index]"> Type:<input type="string" ng-model="entOthrBrsrIDVrsn11[$index]" class= "betnTags" id="entOthrBrsrID11[$index]" name="Other Browser" ng-maxlength="50" title="Other Browser" size="20"> </label> <br>
<label for="entOthrBrsrIDVrsn11[$index]"><span class="show" ng-show="otherBrowserID111[$index]"> Ver. <input type="string" ng-model="entOthrBrsrID11[$index]" class= "betnTags" id="entOthrBrsrIDVrsn11[$index]" name="Other Browser" ng-maxlength="50" title="Other Browser" size="20"> </label>
</span></div>
</div>
</div>
</td>
<td > <div class="widetd3"> <textarea rows="4" cols="25" type="text" ng-model="testerCommentID1[$index]" placeholder="tester's comment, 1000 chars max." class="txtarea" title="Tester's Comment" ng-maxlength="1000" limit-to="1000"> </textarea> </div> </td>
<td > <div class="widetd3"> <textarea rows="4" cols="25" type="text" ng-model="location1[$index]" class="txtarea" placeholder="location/screenshot, 1000 chars max." title="Location/Screen, 1000 chars max" ng-maxlength="1000" limit-to="1000"> </textarea> </div> </td>
<td > <br><div class="widetd8">
<input ng-if="browseImageOption1[$index]" type="file" ng-model='imgCnvrsn1[$index]' alt="Selected Image" title="Browse to screenshot images" onchange="angular.element(this).scope().uploadImage1(this)" accept=".jpg,.jpeg,.icon,.png,.svg,.gif" />
<img id="image{{$index}}" ng-if="imageCaptured1[$index]" ng-src = {{imgCnvrsnCurrentValue1[$index]}} alt="Selected Image" title="Browse to screenshot images" class="large-image" width="50" height="50" ng-click="zoom([$index])" onerror="this.style.display='none';">
<img id="image{{$index}}" ng-if="removeClicked1[$index]" ng-src = {{imgCnvrsnCurrentValue1[$index]}} alt="Selected Image" title="Browse to screenshot images" class="large-image" width="50" height="50" ng-click="zoom([$index])" onerror="this.style.display='none';">
<div id="{{$index}}" class="modal">
<span class="close">×</span>
<img alt="Selected Image" title="Selected Image" class="modal-content" id="img{{$index}}">
<div class="caption" id="caption{{$index}}" ></div>
</div><br>
<div ng-if="displayRemove1[$index]"> <button title='Remove Image' type="button" class='addChild' ng-click="removeImage1($index)">Remove Image</button>
</div>
</td>
<td style="width: 50px" title="Global Issue">
<div style="width: 55px">
<select
ng-model="selected_id_glbl1[$index]"
ng-model="selected_name_glbl1[$index]"
ng-options="o.id as o.name for o in optionsglbl"
ng-change="selected_name_glbl1[$index]=(optionsglbl|filter:{id:selected_id_glbl1[$index]})[0].name" id="globalResult[$index]" title=" Global Issue Type">
<option value="" selected disabled hidden>{{test.InsrtGlobalIssue}}</option>
</select>
</div>
</td>
<td title="Remediation Details"> <div style="width: 200px">
<textarea rows="4" cols="50" type="text" ng-model="rmdatnDtlID1[$index]" class="txtarea" placeholder="remediation details, 1000 chars max." title="Remediation Details, 1000 chars max" ng-maxlength="1000" limit-to="1000"> </textarea>
</div>
</td>
<td > <div style="width: 150px"> <input type="date" title="Date" ng-model="rmdatnDatelID1[$index]" placeholder="mm/dd/yyyy" id="rmdatnDatelID1" name="Remediation Date" /></div></td>
<td></br></br><div class="widetd7" > <button id="{{ 'b'+addedResultIndex }}" type="button" class='addChild' title="Go to parent Issue {{Issue.InsrtTestID}} " data-ng-click="goToParentIssue(indexCollection[$index])" >Go to Parent Issue {{Issue.InsrtTestID}} </button> </div> </td>
</tr>
</tbody>
</table>
</div>
</br>
<div/> <div/>
</br></br>
<div class="footerbutton" ng-if="dataLoaded">
<span > {{submitMessage}}</span><br/>
<input type="button" id="sbtBtn" class="button" value="Save (Alt+S)" ng-click="submit1()">
</div>
</form>
</main>
<div ng-switch="myMbTestResult">
<div ng-switch-when="nottested">
testResult
</div>
<div ng-switch-when="nottested">
testResult
</div>
<div ng-switch-when="nottested">
testResult
</div>
<div ng-switch-when="nottested">
testResult
</div>
</div>
</form>
<script src="./JS/common.js"></script>
<script src="./JS/acrt_Web_Intake.js"> </script>
</body>
</html>