Home | History | Annotate | Download | only in test

Lines Matching refs:IE

563         html = ('<!--[if IE & !(lte IE 8)]>aren\'t<![endif]-->'
564 '<!--[if IE 8]>condcoms<![endif]-->'
565 '<!--[if lte IE 7]>pretty?<![endif]-->')
566 expected = [('comment', "[if IE & !(lte IE 8)]>aren't<![endif]"),
567 ('comment', '[if IE 8]>condcoms<![endif]'),
568 ('comment', '[if lte IE 7]>pretty?<![endif]')]
573 html = ('<![if !(IE)]>broken condcom<![endif]>'
574 '<![if ! IE]><link href="favicon.tiff"/><![endif]>'
575 '<![if !IE 6]><img src="firefox.png" /><![endif]>'
576 '<![if !ie 6]><b>foo</b><![endif]>'
577 '<![if (!IE)|(lt IE 9)]><img src="mammoth.bmp" /><![endif]>')
584 ('unknown decl', 'if !(IE)'),
587 ('unknown decl', 'if ! IE'),
590 ('unknown decl', 'if !IE 6'),
593 ('unknown decl', 'if !ie 6'),
598 ('unknown decl', 'if (!IE)|(lt IE 9)'),