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

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

Issue 9968120: Merge 112992 - Web Inspector: "Pause on start" doesn't change checked state in workers panel (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 8 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
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 877 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 this._startEditing(this.selectedNode._element.children[0]); 888 this._startEditing(this.selectedNode._element.children[0]);
889 } 889 }
890 } 890 }
891 891
892 if (nextSelectedNode) { 892 if (nextSelectedNode) {
893 nextSelectedNode.reveal(); 893 nextSelectedNode.reveal();
894 nextSelectedNode.select(); 894 nextSelectedNode.select();
895 } 895 }
896 896
897 if (handled) 897 if (handled)
898 event.consume(); 898 event.consume(true);
899 }, 899 },
900 900
901 expand: function() 901 expand: function()
902 { 902 {
903 // This is the root, do nothing. 903 // This is the root, do nothing.
904 }, 904 },
905 905
906 collapse: function() 906 collapse: function()
907 { 907 {
908 // This is the root, do nothing. 908 // This is the root, do nothing.
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
1642 1642
1643 WebInspector.CreationDataGridNode.prototype = { 1643 WebInspector.CreationDataGridNode.prototype = {
1644 makeNormal: function() 1644 makeNormal: function()
1645 { 1645 {
1646 delete this.isCreationNode; 1646 delete this.isCreationNode;
1647 delete this.makeNormal; 1647 delete this.makeNormal;
1648 } 1648 }
1649 } 1649 }
1650 1650
1651 WebInspector.CreationDataGridNode.prototype.__proto__ = WebInspector.DataGridNod e.prototype; 1651 WebInspector.CreationDataGridNode.prototype.__proto__ = WebInspector.DataGridNod e.prototype;
OLDNEW
« no previous file with comments | « Source/WebCore/inspector/front-end/ConsoleView.js ('k') | Source/WebCore/inspector/front-end/DatabaseQueryView.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698