OLD | NEW |
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 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
697 } | 697 } |
698 }; | 698 }; |
699 | 699 |
700 var stringAttributes = [ | 700 var stringAttributes = [ |
701 'accessKey', | 701 'accessKey', |
702 'ariaInvalidValue', | 702 'ariaInvalidValue', |
703 'containerLiveRelevant', | 703 'containerLiveRelevant', |
704 'containerLiveStatus', | 704 'containerLiveStatus', |
705 'description', | 705 'description', |
706 'display', | 706 'display', |
| 707 'htmlTag', |
707 'imageDataUrl', | 708 'imageDataUrl', |
708 'language', | 709 'language', |
709 'liveRelevant', | 710 'liveRelevant', |
710 'liveStatus', | 711 'liveStatus', |
711 'name', | 712 'name', |
712 'placeholder', | 713 'placeholder', |
713 'textInputType', | 714 'textInputType', |
714 'url', | 715 'url', |
715 'value']; | 716 'value']; |
716 | 717 |
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1165 utils.defineProperty(AutomationRootNode, 'getOrCreate', function(treeID) { | 1166 utils.defineProperty(AutomationRootNode, 'getOrCreate', function(treeID) { |
1166 return AutomationRootNodeImpl.getOrCreate(treeID); | 1167 return AutomationRootNodeImpl.getOrCreate(treeID); |
1167 }); | 1168 }); |
1168 | 1169 |
1169 utils.defineProperty(AutomationRootNode, 'destroy', function(treeID) { | 1170 utils.defineProperty(AutomationRootNode, 'destroy', function(treeID) { |
1170 AutomationRootNodeImpl.destroy(treeID); | 1171 AutomationRootNodeImpl.destroy(treeID); |
1171 }); | 1172 }); |
1172 | 1173 |
1173 exports.$set('AutomationNode', AutomationNode); | 1174 exports.$set('AutomationNode', AutomationNode); |
1174 exports.$set('AutomationRootNode', AutomationRootNode); | 1175 exports.$set('AutomationRootNode', AutomationRootNode); |
OLD | NEW |