summaryrefslogtreecommitdiffstats
path: root/browser/extensions/formautofill/test/fixtures/third_party/NewEgg/BillingInfo.html
blob: d44bc01b7043b136120d78d25c7e0a46127733e5 (plain)
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
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
<!DOCTYPE html>
<html lang="en-us">
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      <title>Newegg.com - Billing Info</title>
      <meta name="keywords" content="Newegg.com - Once You Know, You Newegg">
      <meta name="description" content="Newegg.com offers the best prices on computer parts, laptop computers, digital cameras, electronics and more with fast shipping and top-rated customer service.  Once you know, you Newegg!">
      <meta name="google-translate-customization" content="d08b8c829bab9a46-ac914e23c0a3607a-g7fba27d07436db8a-e">
      <meta name="language" content="english">
      <meta name="copyright" content="©  2000-2017 Newegg Inc.">
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta name="robots" content="index,follow">
   </head>
   <body>
      <form id="checkout" name="checkout" action="https://secure.newegg.com/GlobalShopping/CheckoutStep2.aspx?CartID=415%2b903ZRCECSZWBJE0&amp;IsCombineGuest=1" method="post" novalidate="novalidate">
         <div>
            Redeem Newegg gift cards<span>
</span>
         </div>
         <div>
            <div>
               <div>
                  <div>
                     <label>Card Number</label>
                     <input type="text" name="GiftCode1"
title="overall type: EMAIL_ADDRESS
                        server type: EMAIL_ADDRESS
                        heuristic type: UNKNOWN_TYPE
                        label: Card Number
                        parseable name: GiftCode1
                        field signature: 2868641577
                        form signature: 16660402300910943442"
autofill-prediction="EMAIL_ADDRESS"
>
                     <input type="text" name="GiftCode" id="GiftCode" size="20" maxlength="16" autocomplete="off"
title="overall type: EMAIL_ADDRESS
                        server type: EMAIL_ADDRESS
                        heuristic type: UNKNOWN_TYPE
                        label: Card Number
                        parseable name: GiftCode
                        field signature: 1229209062
                        form signature: 16660402300910943442"
autofill-prediction="EMAIL_ADDRESS"
>
                  </div>
                  <div>
                     <label>Security Code</label>
                     <input type="password" name="ScurityCode1"
title="overall type: UNKNOWN_TYPE
                        server type: NO_SERVER_DATA
                        heuristic type: UNKNOWN_TYPE
                        label: Security Code
                        parseable name: ScurityCode1
                        field signature: 828427756
                        form signature: 16660402300910943442"
autofill-prediction="UNKNOWN_TYPE"
>
                     <input type="password" maxlength="4" name="SecurityCode" id="SecurityCode" autocomplete="off"
title="overall type: CREDIT_CARD_VERIFICATION_CODE
                        server type: NO_SERVER_DATA
                        heuristic type: CREDIT_CARD_VERIFICATION_CODE
                        label: Security Code
                        parseable name: SecurityCode
                        field signature: 3977890449
                        form signature: 16660402300910943442"
autofill-prediction="CREDIT_CARD_VERIFICATION_CODE"
>
                  </div>
               </div>
               <div>
                  <a>
                  <i>
</i>
                  Enter A Gift Card
                  <i>
</i>
                  </a>
               </div>
               <input type="hidden" name="AllGiftCodes" id="AllGiftCodes" value="">
               <input type="hidden" name="AllGiftPwds" id="AllGiftPwds" value="">
               <input type="hidden" name="GiftMethodAction" id="GiftMethodAction" value="0">
            </div>
            <div>
               <img
title="EggPoints" alt="EggPoints" src="./Newegg.com - Billing Info_files/none.gif">
            </div>
         </div>
         <ul>
            <li>
               <div id="GiftCardEmptyDiv">
                  <div id="GiftCardEmptyMsg">
                     <div>
                        <div>
                           <div>
</div>
                           <div>
<span>Missing Information  </span>Card Number and Security Code fields cannot be empty. Please enter valid information and try again.</div>
                        </div>
                     </div>
                  </div>
               </div>
            </li>
         </ul>
         <div>
            Payment Methods
            <a rel="modal"
title="What&#39;s this?" id="PaymentMethodDisabled">
</a>
            <div id="PaymentMethodDisabled_Content">
               <p>Some payment methods may not be eligible for your order. Please review the full list by clicking <a>here</a> for payment restrictions.</p>
            </div>
            <span>
</span>
         </div>
         <div>
            <ul>
               <li>
                  <input type="radio" name="paymentmethod" id="NSCC"
title="overall type: UNKNOWN_TYPE
                     server type: NO_SERVER_DATA
                     heuristic type: UNKNOWN_TYPE
                     label: Newegg Store Credit Card
                     parseable name: paymentmethod
                     field signature: 1614873398
                     form signature: 16660402300910943442"
autofill-prediction="UNKNOWN_TYPE"
>
                  <label for="NSCC">
                  <strong>Newegg Store Credit Card</strong>
                  </label>
                  <div>
                     <div>
                        <div>
                           <img src="./Newegg.com - Billing Info_files/newegg-cc.png" alt="Newegg Store Credit Card">
                           <p>
                           </p>
                        </div>
                        <div>
                           <strong>Newegg Store Credit Card</strong>
                        </div>
                     </div>
                     <div>
                        <div>
                           <div>
                              <label for="StoreCard_HolderName">
                              Cardholder Name
                              <span>(exactly as shown on card)</span>
                              </label>
                              <input
title="overall type: CREDIT_CARD_NAME_FULL
                                 server type: CREDIT_CARD_NAME_FULL
                                 heuristic type: CREDIT_CARD_NAME_FULL
                                 label: Cardholder Name (exactly as shown on card)
                                 parseable name: StoreCard_HolderName
                                 field signature: 853107187
                                 form signature: 16660402300910943442" type="text" maxlength="80" name="StoreCard_HolderName" id="StoreCard_HolderName" value=""
autofill-prediction="CREDIT_CARD_NAME_FULL"
>
                           </div>
                           <div>
                              <label for="StoreCard_Number">
                              Card Number
                              </label>
                              <input
title="overall type: CREDIT_CARD_NUMBER
                                 server type: CREDIT_CARD_NUMBER
                                 heuristic type: CREDIT_CARD_NUMBER
                                 label: Card Number
                                 parseable name: StoreCard_Number
                                 field signature: 3054139089
                                 form signature: 16660402300910943442" datavalid="60345916" autocomplete="off" id="StoreCard_Number" type="text" name="StoreCard_Number" value="" focus="false"
autofill-prediction="CREDIT_CARD_NUMBER"
>
                           </div>
                           <div>
                              <div>
                                 <label>
                                 <input type="checkbox" checked="checked" name="saveNsccCard" id="saveCard"
title="overall type: UNKNOWN_TYPE
                                    server type: NO_SERVER_DATA
                                    heuristic type: UNKNOWN_TYPE
                                    label: Save for future orders
                                    parseable name: saveNsccCard
                                    field signature: 2599746278
                                    form signature: 16660402300910943442"
autofill-prediction="UNKNOWN_TYPE"
>
                                 Save for future orders
                                 </label>
                              </div>
                           </div>
                        </div>
                        <div>
</div>
                     </div>
                     <div>Do not have a Newegg Store Credit Card? <a>Learn More</a>
</div>
                  </div>
               </li>
               <li>
                  <input type="radio" name="paymentmethod" value="Amex Express Checkout" id="amex"
title="overall type: UNKNOWN_TYPE
                     server type: NO_SERVER_DATA
                     heuristic type: UNKNOWN_TYPE
                     label: Amex Express Checkout
                     parseable name: paymentmethod
                     field signature: 1614873398
                     form signature: 16660402300910943442"
autofill-prediction="UNKNOWN_TYPE"
>
                  <label for="amex">
                  <strong>Amex Express Checkout</strong>
                  </label>
                  <div>
                     <div>
                        <div>
                           <img src="./Newegg.com - Billing Info_files/AEC_PaymentMark_Blue_48x30.png" alt="Amex Express Checkout Button">
                           <p>
                           </p>
                        </div>
                        <div>
                           <strong>Checkout faster with American Express</strong>
                        </div>
                     </div>
                  </div>
               </li>
               <li>
                  <input type="radio" name="paymentmethod" id="bitcoin" disabled="disabled"
title="overall type: UNKNOWN_TYPE
                     server type: NO_SERVER_DATA
                     heuristic type: UNKNOWN_TYPE
                     label: Bitcoin
                     parseable name: paymentmethod
                     field signature: 1614873398
                     form signature: 16660402300910943442"
autofill-prediction="UNKNOWN_TYPE"
>
                  <label for="bitcoin">
                  <strong>Bitcoin</strong>
                  </label>
                  <div>
                     <div>
                        <div>
                           <img alt="Bitcoin accepted here"
title="Bitcoin accepted here" src="./Newegg.com - Billing Info_files/bitcoin_logo.png">
                           <p>
                           </p>
                        </div>
                        <div>
                           <strong>Bitcoin is the safest and most secure way to pay online.</strong>
                           <ul>
                              <li>No identity theft risk; no payment information is ever stored.</li>
                              <li>Your payment completes immediately.</li>
                              <li>
<a target="_blank">Learn more
                                 </a>
                              </li>
                           </ul>
                        </div>
                        <div>
                           <div>
                              <div>
                                 <div>
</div>
                                 <div>
<span>NOTE: </span>Please note that when using Bitcoin as your payment method, once you have clicked the "bitcoin checkout now" button, you will have only 15 minutes to complete your payment. If you are unable to complete your payment, you will have two options: You can try again later to place a new order or you can change your payment method later from Order History in My Account.<br>
<br>
                                    All orders fully paid by Bitcoin are final and cannot be returned for Bitcoin or hard currency. All returns will be made in the form of a Newegg Gift Card. All returns follow our return policy.
                                 </div>
                              </div>
                           </div>
                        </div>
                     </div>
                  </div>
               </li>
               <input type="hidden" name="IsMasterPassLightBoxEnable" id="IsMasterPassLightBoxEnable" value="True">
               <li>
                  <input type="radio" name="paymentmethod" id="masterpass"
title="overall type: UNKNOWN_TYPE
                     server type: NO_SERVER_DATA
                     heuristic type: UNKNOWN_TYPE
                     label: MasterPass
                     parseable name: paymentmethod
                     field signature: 1614873398
                     form signature: 16660402300910943442"
autofill-prediction="UNKNOWN_TYPE"
>
                  <label for="masterpass">
                  <strong>MasterPass</strong>
                  </label>
                  <div>
                     <div>
                        <div>
                           <img src="./Newegg.com - Billing Info_files/mp_mc_acc_038px_gif.gif" alt="MasterPass">
                           <p>
                           </p>
                        </div>
                        <div>
                           <strong>MasterPass is a free service that is a fast, simple and safe way to check out online. It cuts down on the time and effort it takes to buy the things you want and need. And because it's from MasterCard, you can trust that it's secure.
                           </strong>
                           <ul>
                              <li>
                                 When you are ready to check out online, click on the "Buy with MasterPass" button.
                              </li>
                              <li>
                                 Next, unlock your MasterPass account to choose your payment method and shipping address.
                              </li>
                              <li>
                                 Then simply confirm your purchase, and you are done!
                              </li>
                              <li>
                                 Use it with all major credit, debit, and prepaid cards.
                              </li>
                              <li>
                                 Use it to easily store all your cards and addresses in one place.
                              </li>
                              <li>
                                 Use it on all your connected devices.
                              </li>
                           </ul>
                        </div>
                     </div>
                  </div>
               </li>
               <li>
                  <input type="radio" name="paymentmethod" id="visacheckout"
title="overall type: UNKNOWN_TYPE
                     server type: NO_SERVER_DATA
                     heuristic type: UNKNOWN_TYPE
                     label: Visa Checkout
                     parseable name: paymentmethod
                     field signature: 1614873398
                     form signature: 16660402300910943442"
autofill-prediction="UNKNOWN_TYPE"
>
                  <label for="visacheckout">
                  <strong>Visa Checkout</strong>
                  </label>
                  <div>
                     <div>
                        <div>
                           <span id="#visacheckoutlearnmore">
<img src="./Newegg.com - Billing Info_files/Cart_LearnMore_Pop-Up_left.png" alt="Visa Checkout">
</span>
                           <img src="./Newegg.com - Billing Info_files/POS_horizontal_99x34.png" alt="Visa Checkout">
                           <ul>
                              <li>
<a>
                                 Learn more
                                 </a>
                              </li>
                           </ul>
                           <p>
                           </p>
                        </div>
                     </div>
                  </div>
               </li>
               <li>
                  <input type="radio" name="paymentmethod" id="paypal"
title="overall type: UNKNOWN_TYPE
                     server type: NO_SERVER_DATA
                     heuristic type: UNKNOWN_TYPE
                     label: PayPal
                     parseable name: paymentmethod
                     field signature: 1614873398
                     form signature: 16660402300910943442"
autofill-prediction="UNKNOWN_TYPE"
>
                  <label for="paypal">
                  <strong>PayPal</strong>
                  </label>
                  <div>
                     <div>
                        <div>
                           <img src="./Newegg.com - Billing Info_files/pp-acceptance-medium.png" alt="newegg">
                           <ul>
                              <li>
                                 Speed through checkout.
                              </li>
                              <li>
                                 PayPal is the safer, easier way to pay.
                              </li>
                              <li>
<a>
                                 What is PayPal?
                                 </a>
                              </li>
                           </ul>
                           <p>
                           </p>
                        </div>
                        <div>
                           <strong>
                           PayPal is the safer, easier way to pay
                           </strong>
                           <ul>
                              <li>
                                 Never expose your credit card number.
                              </li>
                              <li>
                                 Speed through checkout all over the web. One account, one password - no need to retype your shipping or financial information.
                              </li>
                           </ul>
                        </div>
                     </div>
                  </div>
               </li>
               <li>
                  <input type="radio" name="paymentmethod" id="creditcard"
title="overall type: UNKNOWN_TYPE
                     server type: NO_SERVER_DATA
                     heuristic type: UNKNOWN_TYPE
                     label: Credit Card
                     parseable name: paymentmethod
                     field signature: 1614873398
                     form signature: 16660402300910943442"
autofill-prediction="UNKNOWN_TYPE"
>
                  <label for="creditcard">
                  <strong>Credit Card</strong>
                  </label>
                  <div id="CreditCardArea">
                     <dl id="CardList">
                        <div id="div_cardcvv2">
                           <div>
                              <label>
                              <span>Security Code (CVV2)</span>
                              <input
title="overall type: CREDIT_CARD_VERIFICATION_CODE
                                 server type: NO_SERVER_DATA
                                 heuristic type: CREDIT_CARD_VERIFICATION_CODE
                                 label: Security Code (CVV2)
                                 parseable name: creditCardCVV2
                                 field signature: 2862210423
                                 form signature: 16660402300910943442" data-msg-validatecvv2="Security Code is invalid." type="text" value="" maxlength="4" id="creditCardCVV2" autocomplete="off"
autofill-prediction="CREDIT_CARD_VERIFICATION_CODE"
>
                              <a
title="What is this?" rel="modal" id="CVV2CodeHelper">
                              <img src="./Newegg.com - Billing Info_files/cvv2_sm.gif" alt="cvv2">
</a>
                              </label>
                           </div>
                        </div>
                        <dt>
                           <input id="AddNewCareditCard" name="cardList_R" type="radio" value="new"
title="overall type: UNKNOWN_TYPE
                              server type: NO_SERVER_DATA
                              heuristic type: UNKNOWN_TYPE
                              label: Add New Credit Card
                              parseable name: cardList_R
                              field signature: 513212207
                              form signature: 16660402300910943442"
autofill-prediction="UNKNOWN_TYPE"
>
                           <div>
                              <label for="AddNewCareditCard">Add New Credit Card</label>
                           </div>
                        </dt>
                        <dd>
                           <div>
                              <div>
                                 <p>
                                    <strong>All major credit cards accepted:</strong>
                                    <span>
                                    <img id="ImgDiscover" graysrc="https://ssl-images.newegg.com/WebResource/Themes/2005/Nest/img_ccDnetwork_v1_grey.gif" src="./Newegg.com - Billing Info_files/img_ccDnetwork_v1.gif" alt="Major Cards Accepted">
                                    <img id="ImgMastercard" graysrc="https://ssl-images.newegg.com/WebResource/Themes/2005/Nest/img_ccMastercard_grey.gif" src="./Newegg.com - Billing Info_files/img_ccMastercard.gif" alt="Major Cards Accepted">
                                    <img id="ImgAmex" graysrc="https://ssl-images.newegg.com/WebResource/Themes/2005/Nest/img_ccAmex_grey.gif" src="./Newegg.com - Billing Info_files/img_ccAmex.gif" alt="Major Cards Accepted">
                                    <img id="ImgVisa" graysrc="https://ssl-images.newegg.com/WebResource/Themes/2005/Nest/img_ccVisa_grey.gif" src="./Newegg.com - Billing Info_files/img_ccVisa.gif" alt="Major Cards Accepted">
                                    </span>
                                 </p>
                              </div>
                              <div>
                                 <label for="Card_HolderNameNew">
                                 Cardholder Name
                                 <span>(exactly as shown on card)</span>
                                 </label>
                                 <input
title="overall type: CREDIT_CARD_NAME_FULL
                                    server type: CREDIT_CARD_NAME_FULL
                                    heuristic type: CREDIT_CARD_NAME_FULL
                                    label: Cardholder Name (exactly as shown on card)
                                    parseable name: Card_HolderNameNew
                                    field signature: 3439434497
                                    form signature: 16660402300910943442" type="text" maxlength="80" name="Card_HolderNameNew" id="Card_HolderNameNew" value="" focus="false"
autofill-prediction="CREDIT_CARD_NAME_FULL"
>
                              </div>
                              <div>
                                 <label for="Card_CCNUMBERNEW">
                                 Card Number
                                 </label>
                                 <input
title="overall type: CREDIT_CARD_NUMBER
                                    server type: CREDIT_CARD_NUMBER
                                    heuristic type: CREDIT_CARD_NUMBER
                                    label: Card Number
                                    parseable name: Card_CCNUMBERNEW
                                    field signature: 1223289945
                                    form signature: 16660402300910943442" autocomplete="off" id="Card_CCNUMBERNEW" type="text" name="Card_CCNUMBERNEW" value="" onkeyup="if (&#39;True&#39; == &#39;True&#39;) {
                                    Biz.Payment.AmexPoints.OnChangeOfCardNumberForNewInGlobalCheckoutStep2();}" focus="false"
autofill-prediction="CREDIT_CARD_NUMBER"
>
                                 <img alt="Major Cards Accepted">
                              </div>
                              <div>
                                 <label for="Card_exp_monthNew">
                                 Expiration Date
                                 </label>
                                 <select name="Card_exp_monthNew" id="Card_exp_monthNew" size="1" focus="false"
title="overall type: CREDIT_CARD_EXP_MONTH
                                    server type: CREDIT_CARD_EXP_MONTH
                                    heuristic type: CREDIT_CARD_EXP_MONTH
                                    label: Expiration Date
                                    parseable name: Card_exp_monthNew
                                    field signature: 52703496
                                    form signature: 16660402300910943442"
autofill-prediction="CREDIT_CARD_EXP_MONTH"
>
                                    <option value="Month">Month</option>
                                    <option value="01">01</option>
                                    <option value="02">02</option>
                                    <option value="03">03</option>
                                    <option value="04">04</option>
                                    <option value="05">05</option>
                                    <option value="06">06</option>
                                    <option value="07">07</option>
                                    <option value="08">08</option>
                                    <option value="09">09</option>
                                    <option value="10">10</option>
                                    <option value="11">11</option>
                                    <option value="12">12</option>
                                 </select>
                                 <select name="Card_exp_yearNew" id="Card_exp_yearNew" size="1" focus="false"
title="overall type: CREDIT_CARD_EXP_4_DIGIT_YEAR
                                    server type: CREDIT_CARD_EXP_4_DIGIT_YEAR
                                    heuristic type: CREDIT_CARD_EXP_4_DIGIT_YEAR
                                    label: Expiration Date
                                    parseable name: Card_exp_yearNew
                                    field signature: 3677977052
                                    form signature: 16660402300910943442"
autofill-prediction="CREDIT_CARD_EXP_4_DIGIT_YEAR"
>
                                    <option value="Year">Year</option>
                                    <option value="2017">2017</option>
                                    <option value="2018">2018</option>
                                    <option value="2019">2019</option>
                                    <option value="2020">2020</option>
                                    <option value="2021">2021</option>
                                    <option value="2022">2022</option>
                                    <option value="2023">2023</option>
                                    <option value="2024">2024</option>
                                    <option value="2025">2025</option>
                                    <option value="2026">2026</option>
                                    <option value="2027">2027</option>
                                    <option value="2028">2028</option>
                                    <option value="2029">2029</option>
                                    <option value="2030">2030</option>
                                 </select>
                              </div>
                              <div>
                                 <label for="cvv2code">
                                 <span>Security Code (CVV2)</span>
                                 </label>
                                 <input
title="overall type: CREDIT_CARD_VERIFICATION_CODE
                                    server type: NO_SERVER_DATA
                                    heuristic type: CREDIT_CARD_VERIFICATION_CODE
                                    label: Security Code (CVV2)
                                    parseable name: cvv2code
                                    field signature: 1678191663
                                    form signature: 16660402300910943442" data-msg-validatecvv2="Security Code is invalid." type="text" value="" maxlength="4" name="cvv2code" id="cvv2code" autocomplete="off"
autofill-prediction="CREDIT_CARD_VERIFICATION_CODE"
>
                                 <a
title="What is this?" rel="modal" id="CVV2CodeHelper">
                                 <img src="./Newegg.com - Billing Info_files/cvv2_sm.gif" alt="cvv2">
</a>
                              </div>
                              <div>
                                 <div>
                                    <label>
                                    <input type="checkbox" checked="checked" name="saveCard" id="saveCard"
title="overall type: UNKNOWN_TYPE
                                       server type: NO_SERVER_DATA
                                       heuristic type: UNKNOWN_TYPE
                                       label: Save for future orders
                                       parseable name: saveCard
                                       field signature: 4084541912
                                       form signature: 16660402300910943442"
autofill-prediction="UNKNOWN_TYPE"
>
                                    Save for future orders
                                    </label>
                                 </div>
                                 <div>
                                    <label>
                                    Save Credit Card As:
                                    <input type="text" value="untitled" maxlength="80" id="Card_PaytermLabel" name="Card_PaytermLabel"
title="overall type: UNKNOWN_TYPE
                                       server type: NO_SERVER_DATA
                                       heuristic type: UNKNOWN_TYPE
                                       label: Save Credit Card As:
                                       parseable name: Card_PaytermLabel
                                       field signature: 3910487729
                                       form signature: 16660402300910943442"
autofill-prediction="UNKNOWN_TYPE"
>
                                    </label>
                                 </div>
                                 <div>
                                    <label>
                                    <input type="checkbox" checked="checked" name="IsNotDefault" id="makeDefaultOptionNew"
title="overall type: UNKNOWN_TYPE
                                       server type: NO_SERVER_DATA
                                       heuristic type: UNKNOWN_TYPE
                                       label: Set as default credit card
                                       parseable name: IsNotDefault
                                       field signature: 3972010007
                                       form signature: 16660402300910943442"
autofill-prediction="UNKNOWN_TYPE"
>
                                    Set as default credit card
                                    </label>
                                 </div>
                              </div>
                           </div>
                           <div>
</div>
                           <input type="hidden" name="Card_BankPhone" id="Card_BankPhone" value="888-888-8888">
                           <input type="hidden" name="Card_TransactionNumber" id="Card_TransactionNumber" value="">
                           <input type="hidden" name="Card_HolderName" id="Card_HolderName" value="">
                           <input type="hidden" name="Card_Number" id="Card_Number" value="">
                           <input type="hidden" name="ReEnter_Card_Number" id="ReEnter_Card_Number" value="">
                           <input type="hidden" name="IS_Mark_Default" id="IS_Mark_Default" value="">
                           <input type="hidden" name="Card_exp_month" id="Card_exp_month" value="">
                           <input type="hidden" name="Card_exp_year" id="Card_exp_year" value="">
                           <input type="hidden" name="Card_CVV2" id="Card_CVV2" value="">
                           <input type="hidden" name="Card_IsDefault" id="Card_IsDefault" value="">
                           <input type="hidden" name="Card_CCTYPE" id="Card_CCTYPE" value="">
                           <input type="hidden" name="IsUsedAmexSaveCard" id="IsUsedAmexSaveCard" value="false">
                           <input type="hidden" id="defalutSelectCreditCardRow" value="AddNewCareditCard">
                           <input type="hidden" name="supportCTypes" id="supportCTypes" value="4,5,6,3">
                           <input type="hidden" name="IsAMEXDistributedCard" value="False">
                           <input type="hidden" name="AMEXDistributedCard" value="">
                           <input type="hidden" name="AMEXDistributedCardVI" value="">
                           <input type="hidden" name="AMEXDistributedCardRequestID" value="">
                           <input type="hidden" id="cardNumber-1" value="">
                        </dd>
                     </dl>
                  </div>
               </li>
            </ul>
            <input type="hidden" id="defaultSelectPaytermMethod" value="creditcard" readonly="readonly">
         </div>
         <div>
            Billing Address
            <span>
</span>
         </div>
         <ul>
            <li id="address-chooser">
               <input type="checkbox" id="billingsameaddress" name="IsBilling" checked="" value="yes"
title="overall type: UNKNOWN_TYPE
                  server type: NO_SERVER_DATA
                  heuristic type: UNKNOWN_TYPE
                  label: Same as the shipping address
                  parseable name: IsBilling
                  field signature: 1298880426
                  form signature: 16660402300910943442"
autofill-prediction="UNKNOWN_TYPE"
>
               <label for="billingsameaddress">
               Same as the shipping address
               </label>
            </li>
            <li id="same-address">
            </li>
            <li id="new-address">
               <div>
                  <input type="hidden" name="STransNumber" value="0">
                  <input type="hidden" name="action" value="">
                  <input type="hidden" name="OldContactWith" value="">
                  <ul>
                     <li>
                        <label>
                        Country
                        <span>(<strong>NOTE: </strong>
<em>Billing country cannot be different from shipping country you selected in previous step.</em>)</span>
                        </label>
                        <select name="SCountry_Option" selectcountry="USA" id="countryOption" tabindex="0" size="1"
title="overall type: ADDRESS_HOME_COUNTRY
                           server type: ADDRESS_HOME_COUNTRY
                           heuristic type: ADDRESS_HOME_COUNTRY
                           label: Country (NOTE: Billing country cannot be different from shipping country you selected in previous st
                           parseable name: SCountry_Option
                           field signature: 3459145984
                           form signature: 16660402300910943442"
autofill-prediction="ADDRESS_HOME_COUNTRY"
>
                           <option value="USA">United States</option>
                        </select>
                     </li>
                     <li>
                        <label>Address</label>
                        <input
title="overall type: ADDRESS_HOME_LINE1
                           server type: ADDRESS_HOME_LINE1
                           heuristic type: ADDRESS_HOME_LINE1
                           label: Address
                           parseable name: SAddress1
                           field signature: 328501296
                           form signature: 16660402300910943442" type="text" name="SAddress1" id="SAddress1" maxlength="100" value="" placeholder=""
autofill-prediction="ADDRESS_HOME_LINE1"
>
                     </li>
                     <li>
                        <label>
                        Address 2
                        <span>
<strong>(OPTIONAL)</strong>
<em>Apartment, suite, floor, etc.</em>
</span>
</label>
                        <input
title="overall type: ADDRESS_HOME_LINE2
                           server type: ADDRESS_HOME_LINE2
                           heuristic type: ADDRESS_HOME_LINE2
                           label: Address 2 (OPTIONAL) Apartment, suite, floor, etc.
                           parseable name: SAddress2
                           field signature: 26232370
                           form signature: 16660402300910943442" type="text" name="SAddress2" id="SAddress2" maxlength="100" value="" placeholder=""
autofill-prediction="ADDRESS_HOME_LINE2"
>
                     </li>
                     <li>
                        <ul>
                           <li>
                              <div>
                                 <label id="lblCity">City</label>
                                 <input
title="overall type: ADDRESS_HOME_CITY
                                    server type: ADDRESS_HOME_CITY
                                    heuristic type: ADDRESS_HOME_CITY
                                    label: City
                                    parseable name: SCity
                                    field signature: 1173963820
                                    form signature: 16660402300910943442" type="text" name="SCity" id="SCity" maxlength="45" value=""
autofill-prediction="ADDRESS_HOME_CITY"
>
                              </div>
                           </li>
                           <li>
                              <div>
                                 <label for="stateDropDownList" id="lblState">State/Province/Region</label>
                                 <div>
                                    <select selectstate="CA" name="SState_Option" id="SState_Option_USA" tabindex="0" size="1"
title="overall type: ADDRESS_HOME_STATE
                                       server type: ADDRESS_HOME_STATE
                                       heuristic type: ADDRESS_HOME_STATE
                                       label: State/Province/Region
                                       parseable name: SState_Option
                                       field signature: 3077158397
                                       form signature: 16660402300910943442"
autofill-prediction="ADDRESS_HOME_STATE"
>
                                       <option value="AA">AA</option>
                                       <option value="AP">AP</option>
                                       <option value="AE">AE</option>
                                       <option value="AL">ALABAMA</option>
                                       <option value="AK">ALASKA</option>
                                       <option value="AS">AMERICAN SAMOA</option>
                                       <option value="AZ">ARIZONA</option>
                                       <option value="AR">ARKANSAS</option>
                                       <option value="CA">CALIFORNIA</option>
                                       <option value="CO">COLORADO</option>
                                       <option value="CT">CONNECTICUT</option>
                                       <option value="DE">DELAWARE</option>
                                       <option value="DC">DISTRICT OF COLUMBIA</option>
                                       <option value="FL">FLORIDA</option>
                                       <option value="GA">GEORGIA</option>
                                       <option value="HI">HAWAII</option>
                                       <option value="ID">IDAHO</option>
                                       <option value="IL">ILLINOIS</option>
                                       <option value="IN">INDIANA</option>
                                       <option value="IA">IOWA</option>
                                       <option value="KS">KANSAS</option>
                                       <option value="KY">KENTUCKY</option>
                                       <option value="LA">LOUISIANA</option>
                                       <option value="ME">MAINE</option>
                                       <option value="MD">MARYLAND</option>
                                       <option value="MA">MASSACHUSETTS</option>
                                       <option value="MI">MICHIGAN</option>
                                       <option value="MN">MINNESOTA</option>
                                       <option value="MS">MISSISSIPPI</option>
                                       <option value="MO">MISSOURI</option>
                                       <option value="MT">MONTANA</option>
                                       <option value="NE">NEBRASKA</option>
                                       <option value="NV">NEVADA</option>
                                       <option value="NH">NEW HAMPSHIRE</option>
                                       <option value="NJ">NEW JERSEY</option>
                                       <option value="NM">NEW MEXICO</option>
                                       <option value="NY">NEW YORK</option>
                                       <option value="NC">NORTH CAROLINA</option>
                                       <option value="ND">NORTH DAKOTA</option>
                                       <option value="OH">OHIO</option>
                                       <option value="OK">OKLAHOMA</option>
                                       <option value="OR">OREGON</option>
                                       <option value="PA">PENNSYLVANIA</option>
                                       <option value="PR">PUERTO RICO</option>
                                       <option value="RI">RHODE ISLAND</option>
                                       <option value="SC">SOUTH CAROLINA</option>
                                       <option value="SD">SOUTH DAKOTA</option>
                                       <option value="TN">TENNESSEE</option>
                                       <option value="TX">TEXAS</option>
                                       <option value="VI">U.S. Virgin Islands</option>
                                       <option value="UT">UTAH</option>
                                       <option value="VT">VERMONT</option>
                                       <option value="VA">VIRGINIA</option>
                                       <option value="WA">WASHINGTON</option>
                                       <option value="WV">WEST VIRGINIA</option>
                                       <option value="WI">WISCONSIN</option>
                                       <option value="WY">WYOMING</option>
                                    </select>
                                 </div>
                              </div>
                              <div>
                                 <label id="lblZip">Zip/Postal Code</label>
                                 <input
title="overall type: ADDRESS_HOME_ZIP
                                    server type: ADDRESS_HOME_ZIP
                                    heuristic type: ADDRESS_HOME_ZIP
                                    label: Zip/Postal Code
                                    parseable name: SZip
                                    field signature: 3887080504
                                    form signature: 16660402300910943442" maxlength="20" size="20" type="text" name="SZip" id="SZip" value=""
autofill-prediction="ADDRESS_HOME_ZIP"
>
                              </div>
                           </li>
                           <li>
                              <label>
                              Phone
                              </label>
                              <input
title="overall type: PHONE_HOME_CITY_AND_NUMBER
                                 server type: PHONE_HOME_CITY_AND_NUMBER
                                 heuristic type: PHONE_HOME_WHOLE_NUMBER
                                 label: Phone
                                 parseable name: ShippingPhone
                                 field signature: 3574122515
                                 form signature: 16660402300910943442" type="text" name="ShippingPhone" maxlength="30" id="ShippingPhone" value=""
autofill-prediction="PHONE_HOME_CITY_AND_NUMBER"
>
                           </li>
                           <li>
                              <label>
                              &nbsp;
                              </label>
                              <label>
                              </label>
                           </li>
                           <input type="hidden" id="IsDefault" name="IsDefault">
                           <input type="hidden" name="SContactWith" value="Tester Mo">
                        </ul>
                     </li>
                  </ul>
               </div>
            </li>
            <input type="hidden" name="BCountry" value="USA">
            <input type="hidden" name="BAddress1" value="331 E. Evelyn Avenue">
            <input type="hidden" name="BAddress2" value="">
            <input type="hidden" name="BCity" value="Mountain View">
            <input type="hidden" name="BState" value="CA">
            <input type="hidden" name="BZip" value="94041">
            <input type="hidden" name="CPCPostalCodeForDisplay" value="">
            <input type="hidden" name="IsCanadaPost" value="False">
            <input type="hidden" name="BPhone" value="650-903-0800">
            <input type="hidden" name="BContactWith" value="Tester Mo">
            <input type="hidden" name="hiddenSCountry" value="USA">
            <input type="hidden" name="BIsInPost" value="False">
         </ul>
         <input type="hidden" id="cfAppendix" name="cfAppendix">
         <input type="hidden" id="isIgnoreBillingFocus" value="False">
         <input type="hidden" name="IsReEnterCreditCardValid" id="IsReEnterCreditCardValid" value="True">
         <input type="hidden" name="VMESuccessfulReturnInfo" id="VMESuccessfulReturnInfo">
         <input type="hidden" name="SubmitTypeValue" id="SubmitTypeValue" value="">
         <input type="hidden" name="lastPurchaseDate" id="lastPurchaseDate" value="1/1/0001 12:00:00 AM">
         <input type="hidden" id="GoogleWalletMaskedRequest" name="GoogleWalletMaskedRequest" value="">
         <input type="hidden" id="GoogleWalletMaskedResponse" name="GoogleWalletMaskedResponse">
         <input type="hidden" name="IsEnoughGCAmount" value="0">
         <input type="hidden" name="CustomerCardCVV2IsRequired" id="CustomerCardCVV2IsRequired" value="1">
         <input type="hidden" name="CustomerAppendix" id="CustomerAppendix" value="+KrrFNdT/kbgvDIajN498xXVkpXHtGV4IGEz2zWZhtCaE5W/pB02+iKMnppgs68Q">
      </form>
      <form action="https://secure.newegg.com/Common/Ajax/SavePaymentByAjax.aspx" method="POST" id="creditCardCommandEdit_Form" name="creditCardCommandEdit_Form" novalidate="novalidate">
         <div>
            <div>
</div>
            <ul>
               <li>
                  <label for="Card_PaytermLabel">
                  Save As
                  <span>
                  <em>(a nickname for easy recognition)</em>
                  </span>
                  </label>
                  <input type="text" value="" id="Card_PaytermLabel" name="Card_PaytermLabel" maxlength="80"
title="overall type: UNKNOWN_TYPE
                     server type: NO_SERVER_DATA
                     heuristic type: UNKNOWN_TYPE
                     label: Save As (a nickname for easy recognition)
                     parseable name: Card_PaytermLabel
                     field signature: 3910487729
                     form signature: 15313939527407611188"
autofill-prediction="UNKNOWN_TYPE"
>
               </li>
               <li>
                  <label for="Card_HolderName">
                  Cardholder Name
                  <span>
                  <em>(exactly as shown on card)</em>
                  </span>
                  </label>
                  <input
title="overall type: CREDIT_CARD_NAME_FULL
                     server type: CREDIT_CARD_NAME_FULL
                     heuristic type: CREDIT_CARD_NAME_FULL
                     label: Cardholder Name (exactly as shown on card)
                     parseable name: Card_HolderName
                     field signature: 2535895036
                     form signature: 15313939527407611188" type="text" maxlength="80" name="Card_HolderName" id="Card_HolderName" focus="false"
autofill-prediction="CREDIT_CARD_NAME_FULL"
>
               </li>
               <li>
                  <label for="Card_Number">
                  Card Number
                  </label>
                  <input
title="overall type: CREDIT_CARD_NUMBER
                     server type: CREDIT_CARD_NUMBER
                     heuristic type: CREDIT_CARD_NUMBER
                     label: Card Number
                     parseable name: Card_Number
                     field signature: 3930555619
                     form signature: 15313939527407611188" autocomplete="off" id="Card_Number" type="text" name="Card_Number" focus="false"
autofill-prediction="CREDIT_CARD_NUMBER"
>
                  <img id="CardImg" name="CardImg" alt="Major Cards Accepted">
               </li>
               <li>
                  <label for="Card_exp_month">
                  Expiration Date
                  </label>
                  <select name="Card_exp_month" id="Card_exp_month" size="1" focus="false"
title="overall type: CREDIT_CARD_EXP_MONTH
                     server type: CREDIT_CARD_EXP_MONTH
                     heuristic type: CREDIT_CARD_EXP_MONTH
                     label: Expiration Date
                     parseable name: Card_exp_month
                     field signature: 3840696256
                     form signature: 15313939527407611188"
autofill-prediction="CREDIT_CARD_EXP_MONTH"
>
                     <option value="Month">Month</option>
                     <option value="01">01</option>
                     <option value="02">02</option>
                     <option value="03">03</option>
                     <option value="04">04</option>
                     <option value="05">05</option>
                     <option value="06">06</option>
                     <option value="07">07</option>
                     <option value="08">08</option>
                     <option value="09">09</option>
                     <option value="10">10</option>
                     <option value="11">11</option>
                     <option value="12">12</option>
                  </select>
                  <select name="Card_exp_year" id="Card_exp_year" size="1" focus="false"
title="overall type: CREDIT_CARD_EXP_4_DIGIT_YEAR
                     server type: CREDIT_CARD_EXP_4_DIGIT_YEAR
                     heuristic type: CREDIT_CARD_EXP_4_DIGIT_YEAR
                     label: Expiration Date
                     parseable name: Card_exp_year
                     field signature: 185580832
                     form signature: 15313939527407611188"
autofill-prediction="CREDIT_CARD_EXP_4_DIGIT_YEAR"
>
                     <option value="Year">Year</option>
                     <option value="2017">2017</option>
                     <option value="2018">2018</option>
                     <option value="2019">2019</option>
                     <option value="2020">2020</option>
                     <option value="2021">2021</option>
                     <option value="2022">2022</option>
                     <option value="2023">2023</option>
                     <option value="2024">2024</option>
                     <option value="2025">2025</option>
                     <option value="2026">2026</option>
                     <option value="2027">2027</option>
                     <option value="2028">2028</option>
                     <option value="2029">2029</option>
                     <option value="2030">2030</option>
                  </select>
               </li>
               <li>
                  <label id="makeCCDefaultOptionNew">
                  <input type="checkbox" id="makeDefaultOptionNew" name="Card_IsDefault"
title="overall type: UNKNOWN_TYPE
                     server type: NO_SERVER_DATA
                     heuristic type: UNKNOWN_TYPE
                     label: Set as default credit card
                     parseable name: Card_IsDefault
                     field signature: 1494055862
                     form signature: 15313939527407611188"
autofill-prediction="UNKNOWN_TYPE"
>
                  Set as default credit card
                  </label>
               </li>
               <li>
</li>
            </ul>
         </div>
         <input type="hidden" name="IsInBillingPage" id="IsInBillingPage" value="True">
         <input type="hidden" name="action" value="edit">
         <input type="hidden" name="selectIndex" value="">
         <input type="hidden" name="Card_CCTYPE" id="Card_CCTYPE" value="">
         <input type="hidden" name="Card_BankPhone" id="Card_BankPhone" value="888-888-8888">
         <input type="hidden" name="Card_TransactionNumber" id="Card_TransactionNumber" value="">
         <input type="hidden" name="supportCTypes" id="supportCTypes" value="4,5,6,3">
      </form>
      <form action="https://secure.newegg.com/Common/Ajax/SavePaymentByAjax.aspx" method="POST" id="creditCardCommandRemove_Form" name="creditCardCommandRemove_Form" novalidate="novalidate">
         <div>
            <div>
</div>
         </div>
         <input type="hidden" name="action" value="remove">
         <input type="hidden" name="selectIndex" value="">
         <input type="hidden" name="Card_TransactionNumber" value="">
      </form>
      <form action="https://secure.newegg.com/Common/Ajax/SavePaymentByAjax.aspx" method="POST" id="NsccCardCommandEdit_Form" name="NsccCardCommandEdit_Form" novalidate="novalidate">
         <div>
            <div>
</div>
            <ul>
               <li>
                  <label for="Card_HolderName">
                  Cardholder Name
                  <span>
                  <em>(exactly as shown on card)</em>
                  </span>
                  </label>
                  <input
title="Cardholder Name" type="text" maxlength="80" name="StoreCard_HolderName" id="StoreCard_HolderName" focus="false">
               </li>
               <li>
                  <label for="StoreCard_Number">
                  Card Number
                  </label>
                  <input
title="Card Number" datavalid="60345916" autocomplete="off" id="StoreCard_Number" type="text" name="StoreCard_Number" focus="false">
               </li>
               <li>
               </li>
               <input type="hidden" name="action" value="nsccedit">
               <input type="hidden" name="StoreCard_TransactionNumber" value="">
            </ul>
         </div>
      </form>
   </body>
</html>