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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/fieldset-width-nostretch-ifspecified.html

Issue 1528823002: Move tests related to <fieldset> and <legend> to fast/forms/fieldset. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
Index: third_party/WebKit/LayoutTests/fast/forms/fieldset-width-nostretch-ifspecified.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/fieldset-width-nostretch-ifspecified.html b/third_party/WebKit/LayoutTests/fast/forms/fieldset-width-nostretch-ifspecified.html
deleted file mode 100644
index 8a65640cbf28411ef221ba26feba0f7a12ab4622..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/fieldset-width-nostretch-ifspecified.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <style type="text/css">
- .percentStyle {
- width: 50%;
- padding: 0;
- margin: 0;
- border: 1px solid green;
- }
- .fixedStyle {
- width: 300px;
- padding: 0;
- margin: 0;
- border: 1px solid green;
- }
- .calculatedStyle {
- width: 200px;
- width: calc(350px + 50px);
- padding: 0;
- margin: 0;
- border: 1px solid green;
- }
- .wrap {
- width: 500px;
- }
- </style>
- </head>
- <body>
- <p> Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=79128">79128</a>: Fieldset unexpectedly stretches to minimum intrinsic width </p>
- <p> For this test to pass, you should see our first container to be 50% of its parent, second 300px fixed and third calc width of 400px(if not supported fallback to 200px fixed) </p>
- <div class="wrap">
- <fieldset class="percentStyle">
- Lorem ipsum dolor sit amet, consectetur adipisicing elit
- </fieldset>
- <fieldset class="fixedStyle">
- Lorem ipsum dolor sit amet, consectetur adipisicing elit
- </fieldset>
- <fieldset class="calculatedStyle">
- Lorem ipsum dolor sit amet, consectetur adipisicing elit
- </fieldset>
- </div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698