1<?php
2
3class TestIframeSrcMissing extends GenericTest {
4  function TestIframeSrcMissing1() {
5    $tree = $this->runPipeline('
6<iframe></iframe>
7');
8
9    // some  html2ps versions  treated such  contruct  as indefinitely
10    // nesting frames
11    $this->assertTrue(true);
12  }
13}
14
15?>