1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/svg/text-language-00.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,32 @@ 1.4 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.5 +<head> 1.6 +<title>SVG, text, language...</title> 1.7 +<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 1.8 +<style type="text/css"> 1.9 +body { 1.10 + font-family: sans-serif; 1.11 + font-size: 24px; 1.12 + margin: 24px; 1.13 +} 1.14 +div { 1.15 + height: 100px; 1.16 +} 1.17 +</style> 1.18 +</head> 1.19 + 1.20 +<!-- This file, which does NOT use SVG, serves as a sanity-check; 1.21 + if this reftest fails (i.e. test and reference images match) 1.22 + then our font configuration is not suitable for this test 1.23 + and the SVG testcases must be expected to fail as well. --> 1.24 +<body> 1.25 +<div lang="ar"> 1.26 + <p>Hello world, 你好吗?</p> 1.27 +</div> 1.28 +<div lang="zh-TW"> 1.29 + <p>Hello world, 你好吗?</p> 1.30 +</div> 1.31 +<div lang="ja"> 1.32 + <p>Hello world, 你好吗?</p> 1.33 +</div> 1.34 +</body> 1.35 +</html>