The noframes tag is used for browsers that do not handle frames. The noframes element can contain all the elements that you can find inside the body element of a normal HTML page. The noframes element is most used to link to a non-frameset version of the web site or
(self, **args)
| 1569 | |
| 1570 | |
| 1571 | def noframes(self, **args): |
| 1572 | """The noframes tag is used for browsers that do not handle frames. |
| 1573 | The noframes element can contain all the elements that you can find |
| 1574 | inside the body element of a normal HTML page. |
| 1575 | |
| 1576 | The noframes element is most used to link to a non-frameset version of |
| 1577 | the web site or to display a message to users that frames are required. |
| 1578 | The noframes element goes inside the frameset element. |
| 1579 | |
| 1580 | <www href="http://www.w3schools.com/tags/tag_noframes.asp"/> |
| 1581 | |
| 1582 | """ |
| 1583 | self.write_tag('noframes', False, args) |
| 1584 | self._debugclass('noframes', self.getClassName(args, self.NOFRAMES_ATTRIBUTES)) |
| 1585 | |
| 1586 | def _noframes(self): |
| 1587 | self._closeTag('noframes') |
nothing calls this directly
no test coverage detected