diff options
Diffstat (limited to 'layout/reftests/bidi/425338-1b.html')
-rw-r--r-- | layout/reftests/bidi/425338-1b.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/layout/reftests/bidi/425338-1b.html b/layout/reftests/bidi/425338-1b.html new file mode 100644 index 0000000000..7d3e063c95 --- /dev/null +++ b/layout/reftests/bidi/425338-1b.html @@ -0,0 +1,16 @@ +<html> +<head> +<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> +<script type="text/javascript"> +function c() +{ + document.getElementById("a").style.height = "10em"; + document.body.offsetHeight; + document.getElementById("a").style.height = ""; +} +</script> +</head> +<body onload="c();"> +<span id="a"><span>a</span>b<span>א</span>c</span> +</body> +</html> |