Lines Matching refs:html
33 '/semiauto_shell.html'))
40 def set_tab(self, html):
41 """Replace the body of self._tab with provided html.
43 @param html: the HTML that will replace the body of the dialog tab.
45 html_esc = html.replace('"', '\\"')
58 def set_tab_with_buttons(self, html, buttons=['OK']):
59 """Replace the body of self._tab with provided html and buttons.
61 @param html: the HTML that will replace the body of the dialog tab.
66 html_total = html+'<br>'
75 def set_tab_with_textbox(self, html, title=''):
76 """Replace the body of self._tab with provided html and a textbox.
81 @param html: the HTML that will replace the body of the dialog tab.
86 html_total = '%s<br>%s<br>%s' % (html, textbox, button)