Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab

This commit is contained in:
James Graham
2015-03-27 09:18:12 +00:00
parent 1a81b18b9f
commit 2c9faf5363
91915 changed files with 5979820 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Test: first-line</title>
<link rel="help" href="http://www.w3.org/TR/REC-CSS1#the-first-line-pseudo-element">
<link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html">
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
<style type="text/css">
body { color: blue; }
p:first-line { color: green; }
.two:first-line { font-size: 200%; }
.three:first-line { font-variant: small-caps; }
</style>
<link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#first-line-pseudo" title="5.12.1 The :first-line pseudo-element">
</head>
<body>
<p>
The <strong>first line</strong> of this paragraph, and only that
one, should be <strong>green</strong>. If this precise combination
does not occur, then the user agent has failed this test. Remember
that in order to ensure a complete test, the paragraph must be
displayed on more than one line. Dummy text. Dummy text. Dummy
text. Dummy text. Dummy text. Dummy text. Dummy text. Dummy text.
Dummy text. Dummy text. Dummy text. Dummy text. Dummy text. Dummy
text. Dummy text. Dummy text. Dummy text. Dummy text. Dummy text.
Dummy text. Dummy text. Dummy text. Dummy text. Dummy text. Dummy
text. Dummy text. Dummy text. Dummy text.
</p>
<p class="two">
The <strong>first line</strong> of this paragraph, and only that
one, should be a <strong>larger</strong> font size as well as
<strong>green</strong>. If this precise combination does not occur,
then the user agent has failed this test. Remember that in order to
ensure a complete test, the paragraph must be displayed on more
than one line. Dummy text. Dummy text. Dummy text. Dummy text.
Dummy text. Dummy text. Dummy text. Dummy text. Dummy text. Dummy
text. Dummy text. Dummy text. Dummy text. Dummy text. Dummy text.
Dummy text. Dummy text. Dummy text. Dummy text. Dummy text. Dummy
text. Dummy text. Dummy text. Dummy text. Dummy text. Dummy text.
Dummy text. Dummy text.
</p>
<p class="three">
The <strong>first line</strong> of this paragraph, and only that
one, should be displayed in <strong>small-caps</strong> style as
well as <strong>green</strong>. Thus, if the first line is not in
small-caps style, or if the entire paragraph turns out in
small-caps, then the user agent has failed this test. Dummy text.
Dummy text. Dummy text. Dummy text. Dummy text. Dummy text. Dummy
text. Dummy text. Dummy text. Dummy text. Dummy text. Dummy text.
Dummy text. Dummy text. Dummy text. Dummy text. Dummy text. Dummy
text. Dummy text. Dummy text. Dummy text. Dummy text. Dummy text.
Dummy text. Dummy text. Dummy text. Dummy text. Dummy text.
</p>
</body>
</html>