Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
62f3d030
Kaydet (Commit)
62f3d030
authored
Ara 19, 2011
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#13576: add tests about the handling of (possibly broken) condcoms.
üst
80a61e8d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
0 deletions
+47
-0
_markupbase.py
Lib/_markupbase.py
+4
-0
test_htmlparser.py
Lib/test/test_htmlparser.py
+43
-0
No files found.
Lib/_markupbase.py
Dosyayı görüntüle @
62f3d030
...
...
@@ -107,6 +107,10 @@ class ParserBase:
if
decltype
==
"doctype"
:
self
.
handle_decl
(
data
)
else
:
# According to the HTML5 specs sections "8.2.4.44 Bogus
# comment state" and "8.2.4.45 Markup declaration open
# state", a comment token should be emitted.
# Calling unknown_decl provides more flexibility though.
self
.
unknown_decl
(
data
)
return
j
+
1
if
c
in
"
\"
'"
:
...
...
Lib/test/test_htmlparser.py
Dosyayı görüntüle @
62f3d030
...
...
@@ -323,6 +323,16 @@ DOCTYPE html [
(
"endtag"
,
element_lower
)],
collector
=
Collector
())
def
test_condcoms
(
self
):
html
=
(
'<!--[if IE & !(lte IE 8)]>aren
\'
t<![endif]-->'
'<!--[if IE 8]>condcoms<![endif]-->'
'<!--[if lte IE 7]>pretty?<![endif]-->'
)
expected
=
[(
'comment'
,
"[if IE & !(lte IE 8)]>aren't<![endif]"
),
(
'comment'
,
'[if IE 8]>condcoms<![endif]'
),
(
'comment'
,
'[if lte IE 7]>pretty?<![endif]'
)]
self
.
_run_check
(
html
,
expected
)
class
HTMLParserTolerantTestCase
(
HTMLParserStrictTestCase
):
def
get_collector
(
self
):
...
...
@@ -416,6 +426,39 @@ class HTMLParserTolerantTestCase(HTMLParserStrictTestCase):
# see #12888
self
.
assertEqual
(
p
.
unescape
(
'{ '
*
1050
),
'{ '
*
1050
)
def
test_broken_condcoms
(
self
):
# these condcoms are missing the '--' after '<!' and before the '>'
html
=
(
'<![if !(IE)]>broken condcom<![endif]>'
'<![if ! IE]><link href="favicon.tiff"/><![endif]>'
'<![if !IE 6]><img src="firefox.png" /><![endif]>'
'<![if !ie 6]><b>foo</b><![endif]>'
'<![if (!IE)|(lt IE 9)]><img src="mammoth.bmp" /><![endif]>'
)
# According to the HTML5 specs sections "8.2.4.44 Bogus comment state"
# and "8.2.4.45 Markup declaration open state", comment tokens should
# be emitted instead of 'unknown decl', but calling unknown_decl
# provides more flexibility.
# See also Lib/_markupbase.py:parse_declaration
expected
=
[
(
'unknown decl'
,
'if !(IE)'
),
(
'data'
,
'broken condcom'
),
(
'unknown decl'
,
'endif'
),
(
'unknown decl'
,
'if ! IE'
),
(
'startendtag'
,
'link'
,
[(
'href'
,
'favicon.tiff'
)]),
(
'unknown decl'
,
'endif'
),
(
'unknown decl'
,
'if !IE 6'
),
(
'startendtag'
,
'img'
,
[(
'src'
,
'firefox.png'
)]),
(
'unknown decl'
,
'endif'
),
(
'unknown decl'
,
'if !ie 6'
),
(
'starttag'
,
'b'
,
[]),
(
'data'
,
'foo'
),
(
'endtag'
,
'b'
),
(
'unknown decl'
,
'endif'
),
(
'unknown decl'
,
'if (!IE)|(lt IE 9)'
),
(
'startendtag'
,
'img'
,
[(
'src'
,
'mammoth.bmp'
)]),
(
'unknown decl'
,
'endif'
)
]
self
.
_run_check
(
html
,
expected
)
class
AttributesStrictTestCase
(
TestCaseBase
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment