diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/bidi/489517-1.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/bidi/489517-1.html b/layout/reftests/bidi/489517-1.html new file mode 100644 index 0000000000..95295549be --- /dev/null +++ b/layout/reftests/bidi/489517-1.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html> +<head> +<style type="text/css"> +.flipped { direction: rtl; unicode-bidi: bidi-override; } +</style> + +<script type="text/javascript"> + +function boom() +{ + document.getElementById("outer").className = "flipped"; +} + +</script> +</head> + +<body onload="boom();"><div id="outer">AB</div> +</body> +</html> |