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

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

Issue 1228353008: Remove W3CImportExpectations entries already fixed in upstream (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: TestExpectatons update Created 5 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>Rendering requirements test (suggested default rendering): fieldset m in-width is overridable</title>
6 <link rel="author" title="Chris Rebert" href="http://chrisrebert.com">
7 <link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html #the-fieldset-and-legend-elements">
8 <link rel="help" href="http://drafts.csswg.org/css2/visudet.html#min-max-wid ths">
9 <link rel="help" href="http://drafts.csswg.org/css-sizing/#width-height-keyw ords">
10 <link rel="match" href="ref.html">
11 <meta name="flags" content="">
12 <meta name="assert" content="fieldset's default min-width should be overrida ble since it's not !important and not spec'd to be non-overridable">
13 <style>
14 body {
15 margin: 10px;
16 }
17 #cover {
18 background-color: green;
19 position: absolute;
20 left: 10px;
21 top: 10px;
22 height: 100px;
23 width: 100px;
24 z-index: 2;
25 }
26 fieldset {
27 min-width: 0;/* property under test */
28 /* zero these out so it renders more like a div element */
29 border: none;
30 margin: 0;
31 padding: 0;
32 }
33 .outer {
34 width: 100px;
35 }
36 .inner {
37 background-color: red;
38 color: red;
39 height: 100px;
40 overflow: scroll;
41 white-space: nowrap;
42 }
43 </style>
44 </head>
45 <body>
46 <div class="outer">
47 <fieldset>
48 <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>
49 </fieldset>
50 </div>
51 <p>Test passes if there is a <strong>filled green square</strong> and <stron g>no red</strong>.</p>
52 <div id="cover"></div>
53 </body>
54 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698