| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 * @constructor | 6 * @constructor |
| 7 * @extends {HTMLSpanElement} | 7 * @extends {HTMLSpanElement} |
| 8 */ | 8 */ |
| 9 WebInspector.Icon = class extends HTMLSpanElement { | 9 WebInspector.Icon = class extends HTMLSpanElement { |
| 10 constructor() { | 10 constructor() { |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 'smallicon-device': {x: -100, y: 0, width: 10, height: 10, spritesheet: 'small
icons'}, | 103 'smallicon-device': {x: -100, y: 0, width: 10, height: 10, spritesheet: 'small
icons'}, |
| 104 'smallicon-red-ball': {x: -120, y: 0, width: 10, height: 10, spritesheet: 'sma
llicons'}, | 104 'smallicon-red-ball': {x: -120, y: 0, width: 10, height: 10, spritesheet: 'sma
llicons'}, |
| 105 'smallicon-green-ball': {x: -140, y: 0, width: 10, height: 10, spritesheet: 's
mallicons'}, | 105 'smallicon-green-ball': {x: -140, y: 0, width: 10, height: 10, spritesheet: 's
mallicons'}, |
| 106 'smallicon-orange-ball': {x: -160, y: 0, width: 10, height: 10, spritesheet: '
smallicons'}, | 106 'smallicon-orange-ball': {x: -160, y: 0, width: 10, height: 10, spritesheet: '
smallicons'}, |
| 107 'smallicon-thick-right-arrow': {x: -180, y: 0, width: 10, height: 10, spritesh
eet: 'smallicons'}, | 107 'smallicon-thick-right-arrow': {x: -180, y: 0, width: 10, height: 10, spritesh
eet: 'smallicons'}, |
| 108 'smallicon-user-command': {x: 0, y: -20, width: 10, height: 10, spritesheet: '
smallicons'}, | 108 'smallicon-user-command': {x: 0, y: -20, width: 10, height: 10, spritesheet: '
smallicons'}, |
| 109 'smallicon-text-prompt': {x: -20, y: -20, width: 10, height: 10, spritesheet:
'smallicons'}, | 109 'smallicon-text-prompt': {x: -20, y: -20, width: 10, height: 10, spritesheet:
'smallicons'}, |
| 110 'smallicon-command-result': {x: -40, y: -20, width: 10, height: 10, spriteshee
t: 'smallicons'}, | 110 'smallicon-command-result': {x: -40, y: -20, width: 10, height: 10, spriteshee
t: 'smallicons'}, |
| 111 'smallicon-shadow-mask': {x: -60, y: -20, width: 10, height: 10, spritesheet:
'smallicons', isMask: true}, | 111 'smallicon-shadow-mask': {x: -60, y: -20, width: 10, height: 10, spritesheet:
'smallicons', isMask: true}, |
| 112 'smallicon-bezier-mask': {x: -80, y: -20, width: 10, height: 10, spritesheet:
'smallicons', isMask: true}, | 112 'smallicon-bezier-mask': {x: -80, y: -20, width: 10, height: 10, spritesheet:
'smallicons', isMask: true}, |
| 113 'smallicon-checkmark-mask': {x: -100, y: -20, width: 10, height: 10, spriteshe
et: 'smallicons', isMask: true}, |
| 114 'smallicon-checkmark': {x: -120, y: -20, width: 10, height: 10, spritesheet: '
smallicons'}, |
| 113 }; | 115 }; |
| OLD | NEW |