1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/css-visited/first-line-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,22 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html lang="en-US"> 1.6 +<head> 1.7 + <title>:visited and ::first-line</title> 1.8 + <style type="text/css"> 1.9 + 1.10 + :link, :visited { display: block; text-decoration: none; } 1.11 + 1.12 + :link { color: blue } 1.13 + :link::first-line { color: fuchsia; } 1.14 + :visited { color: purple } 1.15 + :visited::first-line { color: maroon; } 1.16 + 1.17 + </style> 1.18 +</head> 1.19 +<body> 1.20 + 1.21 +<a href="unvisited-page.html">unvisited<br>link</a> 1.22 +<a href="visited-page.html">visited<br>link</a> 1.23 + 1.24 +</body> 1.25 +</html>