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

Side by Side Diff: chrome/renderer/resources/extensions/automation/automation_node.js

Issue 2903973002: Rich editable text implementation using spannables (Closed)
Patch Set: Text style. Created 3 years, 6 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 // 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 var AutomationEvent = require('automationEvent').AutomationEvent; 5 var AutomationEvent = require('automationEvent').AutomationEvent;
6 var automationInternal = 6 var automationInternal =
7 require('binding').Binding.create('automationInternal').generate(); 7 require('binding').Binding.create('automationInternal').generate();
8 var exceptionHandler = require('uncaught_exception_handler'); 8 var exceptionHandler = require('uncaught_exception_handler');
9 var IsInteractPermitted = 9 var IsInteractPermitted =
10 requireNative('automationInternal').IsInteractPermitted; 10 requireNative('automationInternal').IsInteractPermitted;
(...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after
728 'colorValue', 728 'colorValue',
729 'hierarchicalLevel', 729 'hierarchicalLevel',
730 'posInSet', 730 'posInSet',
731 'scrollX', 731 'scrollX',
732 'scrollXMax', 732 'scrollXMax',
733 'scrollXMin', 733 'scrollXMin',
734 'scrollY', 734 'scrollY',
735 'scrollYMax', 735 'scrollYMax',
736 'scrollYMin', 736 'scrollYMin',
737 'setSize', 737 'setSize',
738 'textStyle',
738 'tableCellColumnIndex', 739 'tableCellColumnIndex',
739 'ariaCellColumnIndex', 740 'ariaCellColumnIndex',
740 'tableCellColumnSpan', 741 'tableCellColumnSpan',
741 'tableCellRowIndex', 742 'tableCellRowIndex',
742 'ariaCellRowIndex', 743 'ariaCellRowIndex',
743 'tableCellRowSpan', 744 'tableCellRowSpan',
744 'tableColumnCount', 745 'tableColumnCount',
745 'ariaColumnCount', 746 'ariaColumnCount',
746 'tableColumnIndex', 747 'tableColumnIndex',
747 'tableRowCount', 748 'tableRowCount',
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
1166 utils.defineProperty(AutomationRootNode, 'getOrCreate', function(treeID) { 1167 utils.defineProperty(AutomationRootNode, 'getOrCreate', function(treeID) {
1167 return AutomationRootNodeImpl.getOrCreate(treeID); 1168 return AutomationRootNodeImpl.getOrCreate(treeID);
1168 }); 1169 });
1169 1170
1170 utils.defineProperty(AutomationRootNode, 'destroy', function(treeID) { 1171 utils.defineProperty(AutomationRootNode, 'destroy', function(treeID) {
1171 AutomationRootNodeImpl.destroy(treeID); 1172 AutomationRootNodeImpl.destroy(treeID);
1172 }); 1173 });
1173 1174
1174 exports.$set('AutomationNode', AutomationNode); 1175 exports.$set('AutomationNode', AutomationNode);
1175 exports.$set('AutomationRootNode', AutomationRootNode); 1176 exports.$set('AutomationRootNode', AutomationRootNode);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698