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

Side by Side Diff: Source/WebCore/inspector/front-end/DataGrid.js

Issue 12414004: Merge 144437 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1410/
Patch Set: Created 7 years, 9 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/WebCore/ChangeLog ('k') | no next file » | 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 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after
1249 this.collapse(); 1249 this.collapse();
1250 }, 1250 },
1251 1251
1252 refresh: function() 1252 refresh: function()
1253 { 1253 {
1254 if (!this._element || !this.dataGrid) 1254 if (!this._element || !this.dataGrid)
1255 return; 1255 return;
1256 1256
1257 this._element.removeChildren(); 1257 this._element.removeChildren();
1258 this.createCells(); 1258 this.createCells();
1259 this._element.createChild("td", "corner");
1259 }, 1260 },
1260 1261
1261 /** 1262 /**
1262 * @param {string} columnIdentifier 1263 * @param {string} columnIdentifier
1263 * @return {!Element} 1264 * @return {!Element}
1264 */ 1265 */
1265 createTD: function(columnIdentifier) 1266 createTD: function(columnIdentifier)
1266 { 1267 {
1267 var cell = document.createElement("td"); 1268 var cell = document.createElement("td");
1268 cell.className = columnIdentifier + "-column"; 1269 cell.className = columnIdentifier + "-column";
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
1731 1732
1732 WebInspector.CreationDataGridNode.prototype = { 1733 WebInspector.CreationDataGridNode.prototype = {
1733 makeNormal: function() 1734 makeNormal: function()
1734 { 1735 {
1735 delete this.isCreationNode; 1736 delete this.isCreationNode;
1736 delete this.makeNormal; 1737 delete this.makeNormal;
1737 }, 1738 },
1738 1739
1739 __proto__: WebInspector.DataGridNode.prototype 1740 __proto__: WebInspector.DataGridNode.prototype
1740 } 1741 }
OLDNEW
« no previous file with comments | « Source/WebCore/ChangeLog ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698