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

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/rendering/non-replaced-elements/the-fieldset-element-0/min-width-not-important.html

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/rendering/non-replaced-elements/the-fieldset-element-0/min-width-not-important.html
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/rendering/non-replaced-elements/the-fieldset-element-0/min-width-not-important.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/rendering/non-replaced-elements/the-fieldset-element-0/min-width-not-important.html
deleted file mode 100644
index cabbaf20e6563decd428c6fddae09e93b4dcc172..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/rendering/non-replaced-elements/the-fieldset-element-0/min-width-not-important.html
+++ /dev/null
@@ -1,54 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <meta charset="utf-8">
- <title>Rendering requirements test (suggested default rendering): fieldset min-width is overridable</title>
- <link rel="author" title="Chris Rebert" href="http://chrisrebert.com">
- <link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#the-fieldset-and-legend-elements">
- <link rel="help" href="http://drafts.csswg.org/css2/visudet.html#min-max-widths">
- <link rel="help" href="http://drafts.csswg.org/css-sizing/#width-height-keywords">
- <link rel="match" href="ref.html">
- <meta name="flags" content="">
- <meta name="assert" content="fieldset's default min-width should be overridable since it's not !important and not spec'd to be non-overridable">
- <style>
-body {
- margin: 10px;
-}
-#cover {
- background-color: green;
- position: absolute;
- left: 10px;
- top: 10px;
- height: 100px;
- width: 100px;
- z-index: 2;
-}
-fieldset {
- min-width: 0;/* property under test */
- /* zero these out so it renders more like a div element */
- border: none;
- margin: 0;
- padding: 0;
-}
-.outer {
- width: 100px;
-}
-.inner {
- background-color: red;
- color: red;
- height: 100px;
- overflow: scroll;
- white-space: nowrap;
-}
- </style>
-</head>
-<body>
- <div class="outer">
- <fieldset>
- <div class="inner">a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a</div>
- </fieldset>
- </div>
- <p>Test passes if there is a <strong>filled green square</strong> and <strong>no red</strong>.</p>
- <div id="cover"></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698