Home | History | Annotate | Download | only in net_internals

Lines Matching defs:this

2 // Use of this source code is governed by a BSD-style license that can be
6 * This view displays the progress and results from the "connection tester".
16 DivView.call(this, mainBoxId);
18 this.urlInput_ = document.getElementById(urlInputId);
19 this.summaryDiv_ = document.getElementById(summaryDivId);
22 form.addEventListener('submit', this.onSubmitForm_.bind(this), false);
24 g_browser.addConnectionTestsObserver(this);
30 g_browser.sendStartConnectionTests(this.urlInput_.value);
38 this.summaryDiv_.innerHTML = '';
40 var p = addNode(this.summaryDiv_, 'p');
45 var table = addNode(this.summaryDiv_, 'table');
51 this.tbody_ = addNode(table, 'tbody');
58 var tr = addNode(this.tbody_, 'tr');
73 this.currentExperimentRow_ = {
104 var r = this.currentExperimentRow_;
123 this.currentExperimentRow_ = null;
130 var p = addNode(this.summaryDiv_, 'p');