Changeset 992


Ignore:
Timestamp:
11/15/12 19:41:03 (12 years ago)
Author:
pharms
Message:
  • added some more input events to be traced
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-htmlmonitor/src/main/js/autoquest-htmlmonitor.js

    r944 r992  
    118118    { "tag": "input_text", "actions": [ "onchange", 
    119119                                        "onfocus" ] }, 
     120    { "tag": "input_password", "actions": [ "onchange", 
     121                                            "onfocus" ] }, 
     122    { "tag": "input_checkbox", "actions": [ "onchange", 
     123                                            "onclick", 
     124                                            "onfocus" ] }, 
     125    { "tag": "input_radio", "actions": [ "onchange", 
     126                                         "onclick", 
     127                                         "onfocus" ] }, 
     128    { "tag": "input_submit", "actions": [ "onclick", 
     129                                          "onfocus" ] }, 
     130    { "tag": "input_reset", "actions": [ "onclick", 
     131                                         "onfocus" ] }, 
     132    { "tag": "input_file", "actions": [ "onclick", 
     133                                        "onfocus" ] }, 
     134    { "tag": "input_image", "actions": [ "onclick", 
     135                                         "onfocus" ] }, 
     136    { "tag": "input_button", "actions": [ "onclick", 
     137                                          "onfocus" ] }, 
    120138    { "tag": "input", "actions": [ "onchange", 
    121139                                   "onfocus" ] }, 
Note: See TracChangeset for help on using the changeset viewer.