source: trunk/client/inc/hpdf5/spipu/html2pdf/src/Tests/Tag/Svg/PathInvalidTest.php@ 347

Last change on this file since 347 was 347, checked in by roby, 3 years ago

Aggiornamento per compatibilità con php7.4

File size: 864 bytes
Line 
1<?php
2/**
3 * Html2Pdf Library - Tests
4 *
5 * HTML => PDF converter
6 * distributed under the OSL-3.0 License
7 *
8 * @package Html2pdf
9 * @author Laurent MINGUET <webmaster@html2pdf.fr>
10 * @copyright 2017 Laurent MINGUET
11 */
12
13namespace Spipu\Html2Pdf\Tests\Tag\Svg;
14
15use Spipu\Html2Pdf\Tests\AbstractTest;
16
17/**
18 * Class PathInvalidTest
19 */
20class PathInvalidTest extends AbstractTest
21{
22 /**
23 * test
24 *
25 * @return void
26 * @expectedException \Spipu\Html2Pdf\Exception\HtmlParsingException
27 */
28 public function testCase()
29 {
30 $html = '
31<page>
32 <draw style="width:150mm; height:100mm;">
33 <path style="fill:#770000; stroke:#AA0033;" d="n 20mm,40mm a16mm,8mm 0,0,0 16mm,8mm" />
34 </draw>
35</page>';
36
37 $object = $this->getObject();
38 $object->writeHTML($html);
39 $object->output('test.pdf', 'S');
40 }
41}
Note: See TracBrowser for help on using the repository browser.