Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fixed previous commit.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | prepare-release
Files: files | file ages | folders
SHA3-256: 400fccf209ee18005ac8bb25f9fe579e864548ed63f6f13050c560024a9adaad
User & Date: rolf 2024-07-04 14:15:51
Context
2024-07-08
17:47
More type correction for Tcl 9. check-in: c9406e7cad user: rolf tags: prepare-release
2024-07-06
01:49
wip check-in: e337d16a06 user: rolf tags: wip
2024-07-04
14:15
Fixed previous commit. check-in: 400fccf209 user: rolf tags: prepare-release
14:09
Better only 7-bit ASCII characters in test files. check-in: 177bc743cb user: rolf tags: prepare-release
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to tests/domDoc.test.

1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968

test domDoc-29.8 {asCanonicalXML} {
    set doc [dom parse -keepEmpties {<?xml version="1.0" encoding="ISO-8859-1"?>
<doc>&#169;</doc>}]
    set result [$doc asCanonicalXML]
    $doc delete
    set result
} {<doc>\u00A9</doc>}


# test domDoc-29.9 {asCanonicalXML} {
#     set doc [dom parse -keepEmpties {}]
#     set result [$doc asCanonicalXML]
#     $doc delete
#     set result
# } {}

# cleanup
::tcltest::cleanupTests
return







|












1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968

test domDoc-29.8 {asCanonicalXML} {
    set doc [dom parse -keepEmpties {<?xml version="1.0" encoding="ISO-8859-1"?>
<doc>&#169;</doc>}]
    set result [$doc asCanonicalXML]
    $doc delete
    set result
} "<doc>\u00A9</doc>"


# test domDoc-29.9 {asCanonicalXML} {
#     set doc [dom parse -keepEmpties {}]
#     set result [$doc asCanonicalXML]
#     $doc delete
#     set result
# } {}

# cleanup
::tcltest::cleanupTests
return