diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/writing-mode/1083892-1-ref.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/layout/reftests/writing-mode/1083892-1-ref.html b/layout/reftests/writing-mode/1083892-1-ref.html new file mode 100644 index 0000000000..66ff5b9a90 --- /dev/null +++ b/layout/reftests/writing-mode/1083892-1-ref.html @@ -0,0 +1,27 @@ +<!DOCTYPE html> +<html> +<head> +<title>Bug 1083892</title> +<style> +div { + width:400px; + height:400px; + padding:10px; + border:1px solid black; + writing-mode:vertical-lr; +} +p { + margin: 0; +} +</style> +</head> + +<body> +<div> + This is the first line.<br> + Line two.<br> + Third and final line. +</div> +</body> + +</html> |