• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/

Lines Matching refs:layer

27     WebInspector.DOMDetailsSidebarPanel.call(this, "layer-tree", WebInspector.UIString("Layers"), WebInspector.UIString("Layer"), "Images/NavigationItemLayers.svg", "3");
42 WebInspector.LayerTreeSidebarPanel.StyleClassName = "layer-tree";
120 this._layerInfoSection = new WebInspector.DetailsSection("layer-info", WebInspector.UIString("Layer Info"), [this._noLayerInformationGroup]);
157 var section = new WebInspector.DetailsSection("layer-children", WebInspector.UIString("Child Layers"), [group], null, true);
181 var item1 = a.layer[sortColumnIdentifier] || 0;
182 var item2 = b.layer[sortColumnIdentifier] || 0;
225 var layer = dataGridNode.layer;
226 if (layer.isGeneratedContent || layer.isReflection || layer.isAnonymous)
227 WebInspector.domTreeManager.highlightRect(layer.bounds, true);
229 WebInspector.domTreeManager.highlightDOMNode(layer.nodeId);
235 childLayers = childLayers.filter(function(layer) {
236 return !layer.isInShadowTree;
248 _updateLayerInfoSection: function(layer)
252 this._layerInfoSection.groups = layer ? [this._layerInfoGroup] : [this._noLayerInformationGroup];
254 if (!layer)
257 this._layerInfoRows["Memory"].value = Number.bytesToString(layer.memory);
258 this._layerInfoRows["Width"].value = layer.compositedBounds.width + "px";
259 this._layerInfoRows["Height"].value = layer.compositedBounds.height + "px";
260 this._layerInfoRows["Paints"].value = layer.paintCount + "";
269 mutations.removals.forEach(function(layer) {
270 var node = this._dataGridNodesByLayerId[layer.layerId];
273 delete this._dataGridNodesByLayerId[layer.layerId];
277 mutations.additions.forEach(function(layer) {
278 var node = this._dataGridNodeForLayer(layer);
283 mutations.preserved.forEach(function(layer) {
284 var node = this._dataGridNodesByLayerId[layer.layerId];
286 node.layer = layer;
294 _dataGridNodeForLayer: function(layer)
296 var node = new WebInspector.LayerTreeDataGridNode(layer);
298 this._dataGridNodesByLayerId[layer.layerId] = node;
313 childLayers.forEach(function(layer) {
315 totalMemory += layer.memory || 0;
328 this._contentForPopover(dataGridNode.layer, function(content) {
358 _contentForPopover: function(layer, callback)
361 content.className = "layer-tree-popover";
367 WebInspector.layerTreeManager.reasonsForCompositingLayer(layer, function(compositingReasons) {