The frame tag defines one particular window (frame) within a frameset. Each frame in a frameset can have different attributes, such as border, scrolling, the ability to resize, etc.
(self, **args)
| 1554 | |
| 1555 | |
| 1556 | def frame(self, **args): |
| 1557 | """The frame tag defines one particular window (frame) within a |
| 1558 | frameset. Each frame in a frameset can have different attributes, such |
| 1559 | as border, scrolling, the ability to resize, etc. |
| 1560 | |
| 1561 | <www href="http://www.w3schools.com/tags/tag_frame.asp"/> |
| 1562 | |
| 1563 | """ |
| 1564 | self.write_tag('frame', True, args) |
| 1565 | self._debugclass('frame', self.getClassName(args, self.FRAME_ATTRIBUTES)) |
| 1566 | |
| 1567 | def _frame(self): |
| 1568 | self._closeTag('frame') |
no test coverage detected