mirror of
https://github.com/servo/servo
synced 2026-05-02 12:26:06 +02:00
Update web-platform-tests to revision d011702f368b88b3bae86e7a8fd2ddd22e18b33c
This commit is contained in:
13
tests/wpt/web-platform-tests/tools/py/doc/example/genhtml.py
Normal file
13
tests/wpt/web-platform-tests/tools/py/doc/example/genhtml.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from py.xml import html
|
||||
|
||||
paras = "First Para", "Second para"
|
||||
|
||||
doc = html.html(
|
||||
html.head(
|
||||
html.meta(name="Content-Type", value="text/html; charset=latin1")),
|
||||
html.body(
|
||||
[html.p(p) for p in paras]))
|
||||
|
||||
print unicode(doc).encode('latin1')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user