diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /layout/reftests/text/726392-3-ref.html | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/text/726392-3-ref.html')
-rw-r--r-- | layout/reftests/text/726392-3-ref.html | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/layout/reftests/text/726392-3-ref.html b/layout/reftests/text/726392-3-ref.html new file mode 100644 index 0000000000..338e7ba85c --- /dev/null +++ b/layout/reftests/text/726392-3-ref.html @@ -0,0 +1,83 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <title>Bug 726392</title> + <style type="text/css"> + p { margin: 0; white-space: pre-line; letter-spacing: 10px; font-size:6px;} + .alignLeft { text-align: left; } + .alignRight { text-align: right; } + .alignCenter { text-align: center; } + .alignJustify { text-align: justify; } + .alignStart { text-align: start; } + .alignEnd { text-align: end; } + .alignLastAuto { text-align-last: auto; } + .alignLastLeft { text-align-last: left; } + .alignLastRight { text-align-last: right; } + .alignLastCenter { text-align-last: center; } + .alignLastJustify { text-align-last: justify; } + .alignLastStart { text-align-last: start; } + .alignLastEnd { text-align-last: end; } + </style> +</head> + <body style="width:590px; height:590px;"> + <div> + <p class="alignLeft alignLastAuto">test +test</p> + <p class="alignLeft alignLastLeft">test +test</p> + <p class="alignLeft alignLastRight">test +test</p> + <p class="alignLeft alignLastCenter">test +test</p> + <p class="alignLeft alignLastJustify">test +test</p> + <p class="alignLeft alignLastStart">test +test</p> + <p class="alignLeft alignLastEnd">test +test</p> + <p class="alignJustify alignLastAuto">test +test</p> + <p class="alignJustify alignLastLeft">test +test</p> + <p class="alignJustify alignLastRight">test +test</p> + <p class="alignJustify alignLastCenter">test +test</p> + <p class="alignJustify alignLastJustify">test +test</p> + <p class="alignJustify alignLastStart">test +test</p> + <p class="alignJustify alignLastEnd">test +test</p> + <p class="alignStart alignLastAuto">test +test</p> + <p class="alignStart alignLastLeft">test +test</p> + <p class="alignStart alignLastRight">test +test</p> + <p class="alignStart alignLastCenter">test +test</p> + <p class="alignStart alignLastJustify">test +test</p> + <p class="alignStart alignLastStart">test +test</p> + <p class="alignStart alignLastEnd">test +test</p> + <p class="alignEnd alignLastAuto">test +test</p> + <p class="alignEnd alignLastLeft">test +test</p> + <p class="alignEnd alignLastRight">test +test</p> + <p class="alignEnd alignLastCenter">test +test</p> + <p class="alignEnd alignLastJustify">test +test</p> + <p class="alignEnd alignLastStart">test +test</p> + <p class="alignEnd alignLastEnd">test +test</p> + </div> + </body> +</html> |