Searched refs:inputEl (Results 1 – 7 of 7) sorted by relevance
/development/tools/winscope/src/viewers/components/ |
D | select_with_filter_component_test.ts | 71 const inputEl = getFilterInput(); constant 72 dispatchInput(inputEl, '2'); 75 dispatchInput(inputEl, ''); 93 const inputEl = getFilterInput(); constant 95 dispatchInput(inputEl, '2'); 101 dispatchInput(inputEl, ''); 150 const inputEl = getFilterInput(); constant 151 dispatchInput(inputEl, 'A'); 194 function dispatchInput(inputEl: HTMLInputElement, input: string) { 195 inputEl.value = input; [all …]
|
D | log_component_test.ts | 207 const inputEl = assertDefined( constant 211 inputEl.value = '123'; 212 inputEl.dispatchEvent(new Event('input')); 216 inputEl.value = '1234'; 217 inputEl.dispatchEvent(new Event('input')); 221 inputEl.value = '12345'; 222 inputEl.dispatchEvent(new Event('input')); 226 inputEl.value = ''; 227 inputEl.dispatchEvent(new Event('input'));
|
D | search_box_component_test.ts | 112 const inputEl = assertDefined( constant 115 inputEl.value = newString; 116 inputEl.dispatchEvent(new Event('input'));
|
D | properties_component_test.ts | 171 const inputEl = assertDefined( constant 180 inputEl.value = 'Root'; 181 inputEl.dispatchEvent(new Event('input'));
|
D | hierarchy_component_test.ts | 219 const inputEl = assertDefined( constant 228 inputEl.value = 'Root'; 229 inputEl.dispatchEvent(new Event('input'));
|
/development/tools/winscope/src/app/components/ |
D | trace_view_component_test.ts | 248 const inputEl = assertDefined( constant 251 updateInputField(inputEl, 'Test Preset'); 262 expect(inputEl.value).toEqual(''); 275 const inputEl = assertDefined( constant 278 inputEl.dispatchEvent(new KeyboardEvent('keydown', {key: 'Enter'})); 282 updateInputField(inputEl, 'Test Preset'); 283 inputEl.dispatchEvent(new KeyboardEvent('keydown', {key: 'Enter'})); 405 const inputEl = assertDefined( constant 408 updateInputField(inputEl, presetName); 428 function updateInputField(inputEl: HTMLInputElement, value: string) { [all …]
|
D | app_component_test.ts | 330 const inputEl = assertDefined( constant 335 inputEl.value = 'valid_file_name'; 426 const inputEl = assertDefined( constant 434 inputEl.value = name; 435 inputEl.dispatchEvent(new Event('input'));
|