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

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

Issue 516273002: Move plugin placeholder style to CSS, and allow it to bypass main world CSP. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: gn 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 /*
2 * Copyright 2014 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7 #plugin-placeholder {
8 width: 100%;
9 height: 100%;
10 overflow: hidden;
11 display: flex;
12 align-items: center;
13 background: gray;
14 font: 12px -webkit-control;
15 }
16
17 #plugin-placeholder-content {
18 text-align: center;
19 margin: auto;
20 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698