Add additional test for :first-letter extension across pseudo-elements, and note failures with bug number now that bug has been filed.

This commit is contained in:
L. David Baron 2009-08-12 15:20:52 -07:00
Родитель e18da6dece
Коммит 0c02b29352
3 изменённых файлов: 30 добавлений и 2 удалений

Просмотреть файл

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<style>
div { color: black; }
div::first-letter { color: green; }
</style>
</head>
<body>
<div><a>"<span>This is text</span>"</a></div>
</body>
</html>

Просмотреть файл

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<style>
div { color: black; }
div::first-letter { color: green; }
span:before { content: "\"This "; }
</style>
</head>
<body>
<div><span>is text"</span></div>
</body>
</html>

Просмотреть файл

@ -14,11 +14,14 @@
== nested-1f.html nested-1-ref.html
== nested-1g.html nested-1-ref.html
== quote-1a.html quote-1-ref.html
fails == quote-1b.html quote-1-ref.html
fails == quote-1c.html quote-1-ref.html
fails == quote-1b.html quote-1-ref.html # bug 509685
fails == quote-1c.html quote-1-ref.html # bug 509685
== quote-1c.html quote-1b.html
fails == quote-1d.html quote-1-ref.html
random == quote-1d.html quote-1b.html
fails == quote-1e.html quote-1-ref.html # bug 509685
== quote-1e.html quote-1b.html
== quote-1f.html quote-1-ref.html
fails == dynamic-1.html dynamic-1-ref.html # bug 8253
== dynamic-2.html dynamic-2-ref.html
== dynamic-3a.html dynamic-3-ref.html