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

Side by Side Diff: Source/core/css/html.css

Issue 14467003: Remove ENABLE_DIALOG_ELEMENT (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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
1 /* 1 /*
2 * The default style sheet used to render HTML. 2 * The default style sheet used to render HTML.
3 * 3 *
4 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 4 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 -webkit-margin-start: auto; 137 -webkit-margin-start: auto;
138 -webkit-margin-end: auto; 138 -webkit-margin-end: auto;
139 border-style: inset; 139 border-style: inset;
140 border-width: 1px 140 border-width: 1px
141 } 141 }
142 142
143 map { 143 map {
144 display: inline 144 display: inline
145 } 145 }
146 146
147 #if defined(ENABLE_DIALOG_ELEMENT) && ENABLE_DIALOG_ELEMENT
148 dialog:not([open]) { display: none; } 147 dialog:not([open]) { display: none; }
149 dialog { 148 dialog {
150 position: absolute; 149 position: absolute;
151 left: 0; right: 0; 150 left: 0; right: 0;
152 margin: auto; 151 margin: auto;
153 border: solid; 152 border: solid;
154 padding: 1em; 153 padding: 1em;
155 background: white; 154 background: white;
156 color: black; 155 color: black;
157 } 156 }
158 #endif
159 157
160 /* heading elements */ 158 /* heading elements */
161 159
162 h1 { 160 h1 {
163 display: block; 161 display: block;
164 font-size: 2em; 162 font-size: 2em;
165 -webkit-margin-before: 0.67__qem; 163 -webkit-margin-before: 0.67__qem;
166 -webkit-margin-after: 0.67em; 164 -webkit-margin-after: 0.67em;
167 -webkit-margin-start: 0; 165 -webkit-margin-start: 0;
168 -webkit-margin-end: 0; 166 -webkit-margin-end: 0;
(...skipping 1124 matching lines...) Expand 10 before | Expand all | Expand 10 after
1293 @page { 1291 @page {
1294 /* FIXME: Define the right default values for page properties. */ 1292 /* FIXME: Define the right default values for page properties. */
1295 size: auto; 1293 size: auto;
1296 margin: auto; 1294 margin: auto;
1297 padding: 0px; 1295 padding: 0px;
1298 border-width: 0px; 1296 border-width: 0px;
1299 } 1297 }
1300 1298
1301 /* noscript is handled internally, as it depends on settings. */ 1299 /* noscript is handled internally, as it depends on settings. */
1302 1300
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698