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

Side by Side Diff: Source/core/rendering/RenderTheme.cpp

Issue 542683002: Remove DialogElement runtime flag (status=stable) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « Source/core/loader/FormSubmission.cpp ('k') | Source/core/rendering/RenderView.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /** 1 /**
2 * This file is part of the theme implementation for form controls in WebCore. 2 * This file is part of the theme implementation for form controls in WebCore.
3 * 3 *
4 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Computer, Inc. 4 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Computer, Inc.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 default: 399 default:
400 break; 400 break;
401 } 401 }
402 402
403 return false; 403 return false;
404 } 404 }
405 405
406 String RenderTheme::extraDefaultStyleSheet() 406 String RenderTheme::extraDefaultStyleSheet()
407 { 407 {
408 StringBuilder runtimeCSS; 408 StringBuilder runtimeCSS;
409 if (RuntimeEnabledFeatures::dialogElementEnabled()) { 409 runtimeCSS.appendLiteral("dialog:not([open]) { display: none; }");
410 runtimeCSS.appendLiteral("dialog:not([open]) { display: none; }"); 410 runtimeCSS.appendLiteral("dialog { position: absolute; left: 0; right: 0; wi dth: -webkit-fit-content; height: -webkit-fit-content; margin: auto; border: sol id; padding: 1em; background: white; color: black;}");
411 runtimeCSS.appendLiteral("dialog { position: absolute; left: 0; right: 0 ; width: -webkit-fit-content; height: -webkit-fit-content; margin: auto; border: solid; padding: 1em; background: white; color: black;}"); 411 runtimeCSS.appendLiteral("dialog::backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; background: rgba(0,0,0,0.1); }");
412 runtimeCSS.appendLiteral("dialog::backdrop { position: fixed; top: 0; ri ght: 0; bottom: 0; left: 0; background: rgba(0,0,0,0.1); }");
413 }
414 412
415 if (RuntimeEnabledFeatures::contextMenuEnabled()) { 413 if (RuntimeEnabledFeatures::contextMenuEnabled()) {
416 runtimeCSS.appendLiteral("menu[type=\"popup\" i] { display: none; }"); 414 runtimeCSS.appendLiteral("menu[type=\"popup\" i] { display: none; }");
417 } 415 }
418 416
419 return runtimeCSS.toString(); 417 return runtimeCSS.toString();
420 } 418 }
421 419
422 String RenderTheme::formatMediaControlsTime(float time) const 420 String RenderTheme::formatMediaControlsTime(float time) const
423 { 421 {
(...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after
1205 1203
1206 // padding - not honored by WinIE, needs to be removed. 1204 // padding - not honored by WinIE, needs to be removed.
1207 style->resetPadding(); 1205 style->resetPadding();
1208 1206
1209 // border - honored by WinIE, but looks terrible (just paints in the control box and turns off the Windows XP theme) 1207 // border - honored by WinIE, but looks terrible (just paints in the control box and turns off the Windows XP theme)
1210 // for now, we will not honor it. 1208 // for now, we will not honor it.
1211 style->resetBorder(); 1209 style->resetBorder();
1212 } 1210 }
1213 1211
1214 } // namespace blink 1212 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/loader/FormSubmission.cpp ('k') | Source/core/rendering/RenderView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698