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

Unified Diff: chrome/test/data/extensions/api_test/offscreen_tabs/keyboard_events.js

Issue 9796012: Revert 127833 - Re-land alexbost's experimental offscreenTabs API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 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
Index: chrome/test/data/extensions/api_test/offscreen_tabs/keyboard_events.js
===================================================================
--- chrome/test/data/extensions/api_test/offscreen_tabs/keyboard_events.js (revision 127861)
+++ chrome/test/data/extensions/api_test/offscreen_tabs/keyboard_events.js (working copy)
@@ -1,44 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-var testTab = { url: 'a.html', width: 200, height: 200 };
-var testTabId;
-
-chrome.test.runTests([
- function init() {
- chrome.test.listenOnce(
- chrome.experimental.offscreenTabs.onUpdated,
- function(tabId, changeInfo, tab) {
- assertSimilarTabs(testTab, tab);
- });
-
- chrome.experimental.offscreenTabs.create(testTab, pass(function(tab) {
- assertSimilarTabs(testTab, tab);
- testTabId = tab.id;
- }));
- },
-
- // Test that keyboard events work by sending a 'q' keypress to a.html. The
- // page has a keypress handler that will navigate the page to c.html.
- function keyPress() {
- chrome.test.listenOnce(
- chrome.experimental.offscreenTabs.onUpdated,
- function(tabId, changeInfo, tab) {
- testTab.url = 'c.html';
- assertEq(maybeExpandURL('c.html'), changeInfo.url);
- assertSimilarTabs(testTab, tab);
- assertEq(tabId, tab.id);
- assertEq(tabId, testTabId);
- });
-
- chrome.experimental.offscreenTabs.sendKeyboardEvent(
- testTabId, getKeyboardEvent(Q_KEY), pass(function() {
- chrome.experimental.offscreenTabs.get(testTabId, pass(function(tab) {
- assertSimilarTabs(testTab, tab);
- }));
- }));
- }
-
- // TODO(jstritar): Test event validation and edge cases.
-]);

Powered by Google App Engine
This is Rietveld 408576698