diff options
Diffstat (limited to 'layout/reftests/font-inflation/xul-reflow-1.html')
-rw-r--r-- | layout/reftests/font-inflation/xul-reflow-1.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/layout/reftests/font-inflation/xul-reflow-1.html b/layout/reftests/font-inflation/xul-reflow-1.html new file mode 100644 index 000000000..929fd9883 --- /dev/null +++ b/layout/reftests/font-inflation/xul-reflow-1.html @@ -0,0 +1,21 @@ +<!DOCTYPE HTML> +<title>Testcase, bug 764354</title> +<style> +#outer { + display: -moz-box; + overflow: hidden; + -moz-box-orient: vertical; + width: 300px; + height: 100px; + background: yellow; color: black; +} +.inner { + background: aqua; color: black; + text-align: center; +} +</style> + +<div id="outer"> + <div class="inner">Text</div> + <div class="inner">Text</div> +</div> |