diff options
Diffstat (limited to 'layout/reftests/box/flex-emulation-1.xhtml')
-rw-r--r-- | layout/reftests/box/flex-emulation-1.xhtml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/layout/reftests/box/flex-emulation-1.xhtml b/layout/reftests/box/flex-emulation-1.xhtml new file mode 100644 index 0000000000..ef3b22f9d3 --- /dev/null +++ b/layout/reftests/box/flex-emulation-1.xhtml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" + xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> + <head> + <style> + hbox { + width: 100px; + } + </style> + </head> + <body> + <xul:hbox> + <xul:description>X</xul:description> + <xul:description flex="1" style="background: blue">X</xul:description> + </xul:hbox> + </body> +</html> |