Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(427)

Unified Diff: third_party/WebKit/LayoutTests/fast/html/summary-display-flex.html

Issue 2373963002: Support display:flex for 'summary' (Closed)
Patch Set: Support display flex/inline-flex/grid/inline-grid for summary Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/html/summary-display-flex-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/html/summary-display-flex.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/fieldset/fieldset-display-flex.html b/third_party/WebKit/LayoutTests/fast/html/summary-display-flex.html
similarity index 76%
copy from third_party/WebKit/LayoutTests/fast/forms/fieldset/fieldset-display-flex.html
copy to third_party/WebKit/LayoutTests/fast/html/summary-display-flex.html
index 280ac8379fb8f4619002bfb1d00729fb8e8d9554..328715ba01bc6956ce079dc19b9eb24a1afc10f3 100644
--- a/third_party/WebKit/LayoutTests/fast/forms/fieldset/fieldset-display-flex.html
+++ b/third_party/WebKit/LayoutTests/fast/html/summary-display-flex.html
@@ -50,58 +50,57 @@
}
</style>
-<fieldset style="display: flex;">
- <legend>Fieldset with display: flex</legend>
+<summary style="display: flex;">
<div>these fields</div>
<div>shouldn't be</div>
<div>stacked vertically</div>
-</fieldset>
+</summary>
<h1>flex-direction: row</h1>
-<fieldset class="flex-container flex-direction-row">
+<summary class="flex-container flex-direction-row">
<div class="flex-item">1</div>
<div class="flex-item">2</div>
<div class="flex-item">3</div>
-</fieldset>
+</summary>
<h1>flex-direction: row-reverse</h1>
-<fieldset class="flex-container flex-direction-row-reverse">
+<summary class="flex-container flex-direction-row-reverse">
<div class="flex-item">1</div>
<div class="flex-item">2</div>
<div class="flex-item">3</div>
-</fieldset>
+</summary>
<h1>flex-direction: column</h1>
-<fieldset class="flex-container flex-direction-column">
+<summary class="flex-container flex-direction-column">
<div class="flex-item">1</div>
<div class="flex-item">2</div>
<div class="flex-item">3</div>
-</fieldset>
+</summary>
<h1>flex-direction: column-reverse</h1>
-<fieldset class="flex-container flex-direction-column-reverse">
+<summary class="flex-container flex-direction-column-reverse">
<div class="flex-item">1</div>
<div class="flex-item">2</div>
<div class="flex-item">3</div>
-</fieldset>
+</summary>
<h1>justify-content: center</h1>
-<fieldset class="flex-container justify-content-center">
+<summary class="flex-container justify-content-center">
<div class="flex-item">1</div>
<div class="flex-item">2</div>
<div class="flex-item">3</div>
-</fieldset>
+</summary>
<h1>justify-content: space-around</h1>
-<fieldset class="flex-container justify-content-space-around">
+<summary class="flex-container justify-content-space-around">
<div class="flex-item">1</div>
<div class="flex-item">2</div>
<div class="flex-item">3</div>
-</fieldset>
+</summary>
<h1>justify-content: space-between</h1>
-<fieldset class="flex-container justify-content-space-between">
+<summary class="flex-container justify-content-space-between">
<div class="flex-item">1</div>
<div class="flex-item">2</div>
<div class="flex-item">3</div>
-</fieldset>
+</summary>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/html/summary-display-flex-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698