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

Unified Diff: chrome/test/data/extensions/api_test/automation/tests/tabs/close_tab.js

Issue 655273005: Implement AutomationNode.querySelector(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Fix heap-use-after-free issue by not keeping a scoped_ptr to automation_api_helper in extension_hel… Created 6 years, 1 month 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
Index: chrome/test/data/extensions/api_test/automation/tests/tabs/close_tab.js
diff --git a/chrome/test/data/extensions/api_test/automation/tests/tabs/close_tab.js b/chrome/test/data/extensions/api_test/automation/tests/tabs/close_tab.js
index 42c769dd253f091c8b86e7ad15a97fe6cc532239..bb2d619b8c05af6f8118e08ed3851d905a2d596a 100644
--- a/chrome/test/data/extensions/api_test/automation/tests/tabs/close_tab.js
+++ b/chrome/test/data/extensions/api_test/automation/tests/tabs/close_tab.js
@@ -4,7 +4,7 @@
var allTests = [
function testCloseTab() {
- getUrlFromConfig(function(url) {
+ getUrlFromConfig('index.html', function(url) {
chrome.tabs.create({'url': url}, function(tab) {
chrome.automation.getTree(function(rootNode) {
rootNode.addEventListener(EventType.destroyed, function() {

Powered by Google App Engine
This is Rietveld 408576698