1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/css-mediaqueries/mq_print_orientation-ref.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,27 @@ 1.4 +<?xml version="1.0" encoding="iso-8859-1" ?> 1.5 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 1.6 + 1.7 + 1.8 +<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-print"> 1.9 +<head> 1.10 + <title>Media Query - print mode test - orientation</title> 1.11 + <style><![CDATA[ 1.12 + p {height: 10px; width: 100px; color: yellow; } 1.13 + p.y { color: aqua; } 1.14 + p.n { color: yellow; } 1.15 + ]]></style> 1.16 +</head> 1.17 + 1.18 +<body> 1.19 + <p class="y">a</p> 1.20 + <p class="n">b</p> 1.21 + <p class="y">c</p> 1.22 + <p class="y">d</p> 1.23 + <p class="y">e</p> 1.24 + <p class="n">f</p> 1.25 + <p class="n">g</p> 1.26 + <p class="n">h</p> 1.27 + <p class="n">i</p> 1.28 + <p class="n">j</p> 1.29 +</body> 1.30 +</html>