layout/reftests/box/flexbox-attributes-no-input-horizontal-ref.xhtml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/box/flexbox-attributes-no-input-horizontal-ref.xhtml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,38 @@
     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 +  pointer-events: none;
    1.16 +}
    1.17 +
    1.18 +body > div {
    1.19 +  display: -moz-box;
    1.20 +  background: yellow;
    1.21 +  -moz-box-flex: 1;
    1.22 +  -moz-box-orient: horizontal;
    1.23 +}
    1.24 +
    1.25 +]]>
    1.26 +</style>
    1.27 +</head>
    1.28 +<body>
    1.29 +<div>
    1.30 +  <input type="text" value="2" />
    1.31 +  <input type="text" value="1" />
    1.32 +  <input type="text" value="width" />
    1.33 +  <input type="text" value="height" />
    1.34 +  <input type="text" value="minwidth" />
    1.35 +  <input type="text" value="minheight" />
    1.36 +  <input type="text" value="maxwidth" />
    1.37 +  <input type="text" value="maxheight" />
    1.38 +  <input type="text" value="flex" />
    1.39 +</div>
    1.40 +</body>
    1.41 +</html>

mercurial