* @license LGPL The GNU Lesser GPL (LGPL) or an MIT-like license.
*/
require_once '../src/QueryPath/QueryPath.php';
// Let's stub out a basic SVG document.
$svg_stub = '
';
qp($svg_stub)
->attr(['width' => 800, 'height' => 600])
->append('')
->find('#second')
->attr(['x' => 15, 'y' => 4, 'width' => 40, 'height' => 60, 'fill' => 'red'])
->prev()
->attr(['x' => 2, 'y' => 2, 'width' => 40, 'height' => 60, 'fill' => 'navy'])
->writeXML();