Home
last modified time | relevance | path

Searched refs:inputEl (Results 1 – 7 of 7) sorted by relevance

/development/tools/winscope/src/viewers/components/
Dselect_with_filter_component_test.ts71 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 …]
Dlog_component_test.ts207 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'));
Dsearch_box_component_test.ts112 const inputEl = assertDefined( constant
115 inputEl.value = newString;
116 inputEl.dispatchEvent(new Event('input'));
Dproperties_component_test.ts171 const inputEl = assertDefined( constant
180 inputEl.value = 'Root';
181 inputEl.dispatchEvent(new Event('input'));
Dhierarchy_component_test.ts219 const inputEl = assertDefined( constant
228 inputEl.value = 'Root';
229 inputEl.dispatchEvent(new Event('input'));
/development/tools/winscope/src/app/components/
Dtrace_view_component_test.ts248 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 …]
Dapp_component_test.ts330 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'));