diff options
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/linebox/vertical-align-baseline-006a.xht')
-rw-r--r-- | testing/web-platform/tests/css/CSS2/linebox/vertical-align-baseline-006a.xht | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/linebox/vertical-align-baseline-006a.xht b/testing/web-platform/tests/css/CSS2/linebox/vertical-align-baseline-006a.xht new file mode 100644 index 0000000000..084110c370 --- /dev/null +++ b/testing/web-platform/tests/css/CSS2/linebox/vertical-align-baseline-006a.xht @@ -0,0 +1,39 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml"> + + <head> + + <title>CSS Test: Baseline alignment of an inline-block with vertical padding and margin</title> + + <link rel="author" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#leading" title="10.8.1 Leading and half-leading" /> + + <meta name="assert" content="The baseline of an (anonymous) inline element is aligned with the baseline of the last line box of an 'inline-block' in the normal flow as 'vertical-align: baseline' is by default applied. In such case, the vertical padding and vertical margin have no influence on the position of the baseline line of an 'inline-block'." /> + + <style type="text/css"><![CDATA[ + div > div + { + display: inline-block; + font-size: 30px; + margin: 0.3em 0em; + padding: 0.7em 0em; + vertical-align: baseline; + } + ]]></style> + + </head> + + <body> + + <p>Test passes if the bottom of all 'L's are aligned.</p> + + <div>LLLLL + <div> + <p>ABCDE</p> + <p>LLLLL</p> + </div>LLLLL + </div> + + </body> +</html> |