Commit 4e82758c authored by Rune Lillesveen's avatar Rune Lillesveen Committed by Commit Bot

display:contents tests for button/details/fieldset.

Bug: 794498, 795217, 795219
Change-Id: I48011892452379f432119b5a8bb3bc4a4c48ee06
Reviewed-on: https://chromium-review.googlesource.com/828974
Commit-Queue: Rune Lillesveen <futhark@chromium.org>
Reviewed-by: default avatarMorten Stenshorne <mstensho@chromium.org>
Cr-Commit-Position: refs/heads/master@{#524371}
parent 5a8335c1
...@@ -2904,7 +2904,9 @@ crbug.com/786249 http/tests/inspector-protocol/network/response-interception-req ...@@ -2904,7 +2904,9 @@ crbug.com/786249 http/tests/inspector-protocol/network/response-interception-req
# ====== Begin of display: contents tests ====== # ====== Begin of display: contents tests ======
crbug.com/795217 external/wpt/css/css-display/display-contents-details.html [ Failure ]
crbug.com/181374 external/wpt/css/css-display/display-contents-dynamic-table-001-inline.html [ Failure ] crbug.com/181374 external/wpt/css/css-display/display-contents-dynamic-table-001-inline.html [ Failure ]
crbug.com/795219 external/wpt/css/css-display/display-contents-fieldset.html [ Failure ]
# ====== End of display: contents tests ====== # ====== End of display: contents tests ======
......
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Display: display:contents and HTML button element</title>
<link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-display/#unbox-html">
<link rel="match" href="display-contents-pass-ref.html">
<style>
button {
all: initial;
border: 10px solid red;
display: contents;
}
</style>
<p>You should see the word PASS below.</p>
<button>P<!---->A<!---->S<!---->S</button>
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Display: display:contents and HTML details and summary elements</title>
<link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-display/#unbox-html">
<link rel="match" href="display-contents-pass-ref.html">
<style>
details, summary {
all: initial;
border: 10px solid red;
display: contents;
}
</style>
<p>You should see the word PASS below.</p>
P<details open><summary>A</summary><span>S</span></details>S
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Display: display:contents and HTML fieldset and legend elements</title>
<link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-display/#unbox-html">
<link rel="match" href="display-contents-pass-ref.html">
<style>
fieldset, legend {
all: initial;
border: 10px solid red;
display: contents;
}
</style>
<p>You should see the word PASS below.</p>
P<fieldset>A<legend>S</legend>S</fieldset>
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