1<?php
2
3class TestIframeSrcEmpty extends GenericTest {
4  function TestIframeSrcEmpty1() {
5    $tree = $this->runPipeline('
6<iframe src=""></iframe>
7');
8
9    // html2ps used  to loop on such IFRAMEs  indefinitely, dying with
10    // "Frame nesting too deep" message
11    $this->assertTrue(true);
12  }
13}
14
15?>