Diff for /embedaddon/libxml2/python/tests/serialize.py between versions 1.1 and 1.1.1.2

version 1.1, 2012/02/21 23:38:00 version 1.1.1.2, 2013/07/22 01:22:29
Line 96  str = doc.serialize("iso-8859-1", 1) Line 96  str = doc.serialize("iso-8859-1", 1)
 if str != """<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">  if str != """<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
 <html>  <html>
 <head>  <head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <title>Hello</title>  <title>Hello</title>
 </head>  </head>
 <body><p>hello</p></body>  <body><p>hello</p></body>
Line 131  if str != """<html> Line 131  if str != """<html>
 str = root.serialize("iso-8859-1", 1)  str = root.serialize("iso-8859-1", 1)
 if str != """<html>  if str != """<html>
 <head>  <head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <title>Hello</title>  <title>Hello</title>
 </head>  </head>
 <body><p>hello</p></body>  <body><p>hello</p></body>

Removed from v.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>