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

Unified Diff: chrome/test/data/extensions/api_test/automation/tests/tabs/attributes.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/data/extensions/api_test/automation/sites/attributes.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/automation/tests/tabs/attributes.js
diff --git a/chrome/test/data/extensions/api_test/automation/tests/tabs/attributes.js b/chrome/test/data/extensions/api_test/automation/tests/tabs/attributes.js
index 8de91b4a2647228a435be030627ab54aa9e64268..e82bdaf1706f3867228fe683e79111404a4c2684 100644
--- a/chrome/test/data/extensions/api_test/automation/tests/tabs/attributes.js
+++ b/chrome/test/data/extensions/api_test/automation/tests/tabs/attributes.js
@@ -300,6 +300,14 @@ var allTests = [
chrome.test.succeed();
},
+
+ function testHtmlTagAttribute() {
+ var figure = rootNode.find({ attributes: { htmlTag: 'figure' } });
+ assertTrue(Boolean(figure));
+ assertEq(figure.htmlTag, 'figure');
+
+ chrome.test.succeed();
+ }
];
setUpAndRunTests(allTests, 'attributes.html');
« no previous file with comments | « chrome/test/data/extensions/api_test/automation/sites/attributes.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698