1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/font-face/dynamic-duplicate-rule-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,35 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html> 1.6 +<head> 1.7 +<meta charset="utf-8"> 1.8 + 1.9 +<style type="text/css" id="style1"> 1.10 +@font-face { 1.11 + font-family: foo; 1.12 + src: local("Arial"), 1.13 + local("DejaVu Sans"), 1.14 + local("Free Sans"), 1.15 + local("Open Sans"), 1.16 + local("Droid Sans"), 1.17 + local("Roboto"); 1.18 +} 1.19 +</style> 1.20 + 1.21 +<style type="text/css"> 1.22 +body { 1.23 + font-family: serif; 1.24 +} 1.25 +.test { 1.26 + font-family: foo; 1.27 +} 1.28 +</style> 1.29 + 1.30 +</head> 1.31 + 1.32 +<body> 1.33 +<div> 1.34 +foo <span class="test">bar</span> baz 1.35 +</div> 1.36 +</body> 1.37 + 1.38 +</html>