1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/box/flexbox-attributes-no-input-vertical-ref.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,37 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.6 +<head> 1.7 +<title>Test that XUL attributes are not supported on non-XUL elements</title> 1.8 +<style type="text/css"> 1.9 +<![CDATA[ 1.10 + 1.11 +html, body { 1.12 + display: -moz-box; 1.13 + margin: 0; padding: 0; 1.14 + width: 100%; height: 100%; 1.15 +} 1.16 + 1.17 +body > div { 1.18 + display: -moz-box; 1.19 + background: yellow; 1.20 + -moz-box-flex: 1; 1.21 + -moz-box-orient: vertical; 1.22 +} 1.23 + 1.24 +]]> 1.25 +</style> 1.26 +</head> 1.27 +<body> 1.28 +<div> 1.29 + <input type="text" value="2" /> 1.30 + <input type="text" value="1" /> 1.31 + <input type="text" value="width" /> 1.32 + <input type="text" value="height" /> 1.33 + <input type="text" value="minwidth" /> 1.34 + <input type="text" value="minheight" /> 1.35 + <input type="text" value="maxwidth" /> 1.36 + <input type="text" value="maxheight" /> 1.37 + <input type="text" value="flex" /> 1.38 +</div> 1.39 +</body> 1.40 +</html>