Commit 8c80c402 authored by Rune Lillesveen's avatar Rune Lillesveen Committed by Commit Bot

Test that display:contents font-size contributes to line-height.

Bug: 713019
Change-Id: Iab9c0148ef0a22403b770ae5a8c2ea0591ba5958
Reviewed-on: https://chromium-review.googlesource.com/800510Reviewed-by: default avatarMorten Stenshorne <mstensho@chromium.org>
Commit-Queue: Rune Lillesveen <futhark@chromium.org>
Cr-Commit-Position: refs/heads/master@{#520553}
parent f47b3618
......@@ -2997,6 +2997,7 @@ crbug.com/786249 virtual/mojo-loading/http/tests/inspector-protocol/network/resp
crbug.com/181374 external/wpt/css/css-display/display-contents-dynamic-table-001-inline.html [ Failure ]
crbug.com/717460 external/wpt/css/css-display/display-contents-first-letter-002.html [ Failure ]
crbug.com/706316 external/wpt/css/css-display/display-contents-first-line-002.html [ Failure ]
crbug.com/713019 external/wpt/css/css-display/display-contents-line-height.html [ Failure ]
crbug.com/709808 external/wpt/css/css-display/display-contents-text-inherit.html [ Failure ]
# ====== End of display: contents tests ======
......
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reftest Reference</title>
<link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org">
<style>
span { font-size: 40px; }
</style>
<p>The two lines below should not overlap.</p>
<span>Line 1</span><br><span>Line 2</span>
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Display: display:contents font-size should affect line-height</title>
<link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-display-3/#valdef-display-contents">
<link rel="match" href="display-contents-line-height-ref.html">
<style>
span {
display: contents;
font-size: 40px;
}
</style>
<p>The two lines below should not overlap.</p>
<span>Line 1</span><br><span>Line 2</span>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment