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

Side by Side Diff: third_party/WebKit/Source/core/xml/DocumentXMLTreeViewer.css

Issue 1416793004: Remove support for -webkit-canvas and Document.getCSSCanvasContext. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
OLDNEW
1 /* Copyright 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 div.header { 6 div.header {
7 border-bottom: 2px solid black; 7 border-bottom: 2px solid black;
8 padding-bottom: 5px; 8 padding-bottom: 5px;
9 margin: 10px; 9 margin: 10px;
10 } 10 }
(...skipping 25 matching lines...) Expand all
36 cursor: pointer; 36 cursor: pointer;
37 display: inline-block; 37 display: inline-block;
38 margin-left: -10px; 38 margin-left: -10px;
39 width: 10px; 39 width: 10px;
40 background-repeat: no-repeat; 40 background-repeat: no-repeat;
41 background-position: left top; 41 background-position: left top;
42 vertical-align: bottom; 42 vertical-align: bottom;
43 } 43 }
44 44
45 .collapse-button { 45 .collapse-button {
46 background-image: -webkit-canvas(arrowDown); 46 background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='#909090' width='10' height='10'><path d='M0 0 L8 0 L4 7 Z'/></svg>");
47 height: 10px; 47 height: 10px;
48 } 48 }
49 49
50 .expand-button { 50 .expand-button {
51 background-image: -webkit-canvas(arrowRight); 51 background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='#909090' width='10' height='10'><path d='M0 0 L0 8 L7 4 Z'/></svg>");
52 height: 11px; 52 height: 10px;
53 } 53 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp ('k') | third_party/WebKit/Source/core/xml/DocumentXMLTreeViewer.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698