1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/text/font-selection-by-lang-01.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,20 @@ 1.4 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 1.5 +<html> 1.6 +<head> 1.7 + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 1.8 + <meta http-equiv="Content-Style-Type" content="text/css"> 1.9 + <title>test for font selection by language</title> 1.10 + <!-- Checks that caches do not cause the lang="ja" font to be used for 1.11 + the lang="en" element. 1.12 + --> 1.13 + <style type="text/css"> 1.14 + p { 1.15 + font-family: sans-serif; 1.16 + } 1.17 + </style> 1.18 +</head> 1.19 +<body> 1.20 + <p lang="ja">0123456789<p> 1.21 + <p lang="en">0123456789<p> 1.22 +</body> 1.23 +</html>