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

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

Issue 2857413002: htmlTag was missing from the list of stringAttributes for an automationNode (Closed)
Patch Set: Created 3 years, 7 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 | « no previous file | chrome/test/data/extensions/api_test/automation/sites/attributes.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 686 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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);
OLDNEW
« no previous file with comments | « no previous file | chrome/test/data/extensions/api_test/automation/sites/attributes.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698