# SF [ 729683 ] html output method can garble mixed HTML and XML
# Submitted By:
# Nils Klarlund (klarlund)
from Xml.Xslt import test_harness
source_1 = """
tab_1
tab_2
"""
sheet_1 = """
http://www.w3.org/1999/xhtml
ERROR column_format=''
"""
expected_1 = """
"""
def Test(tester):
source = test_harness.FileInfo(string=source_1)
sheet = test_harness.FileInfo(string=sheet_1)
test_harness.XsltTest(tester, source, [sheet], expected_1,
title="mixed XML and HTML in HTML output; indent=yes")
return