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

Unified Diff: chrome/browser/ui/webui/options/chromeos/bluetooth_options_browsertest.js

Issue 253543002: web_dev_style: check webui browser tests as well. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 6 years, 8 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/browser/ui/webui/options/chromeos/bluetooth_options_browsertest.js
diff --git a/chrome/browser/ui/webui/options/chromeos/bluetooth_options_browsertest.js b/chrome/browser/ui/webui/options/chromeos/bluetooth_options_browsertest.js
index 777f062f8269e4126deb791f547260da0e2db15f..43343fb72f418d30e4208c2dd9adf1e2649bcfcd 100644
--- a/chrome/browser/ui/webui/options/chromeos/bluetooth_options_browsertest.js
+++ b/chrome/browser/ui/webui/options/chromeos/bluetooth_options_browsertest.js
@@ -15,7 +15,7 @@ BluetoothWebUITest.prototype = {
browsePreload: 'chrome://settings-frame/settings',
/**
- * @inheritDoc
+ * @override
*/
preLoad: function() {
this.makeAndRegisterMockHandler([
@@ -68,7 +68,7 @@ BluetoothWebUITest.prototype = {
};
-TEST_F('BluetoothWebUITest','testEnableBluetooth', function() {
+TEST_F('BluetoothWebUITest', 'testEnableBluetooth', function() {
assertEquals(this.browsePreload, document.location.href);
expectFalse($('enable-bluetooth').checked);
expectTrue($('bluetooth-paired-devices-list').parentNode.hidden);
@@ -82,7 +82,7 @@ TEST_F('BluetoothWebUITest','testEnableBluetooth', function() {
expectFalse($('bluetooth-paired-devices-list').parentNode.hidden);
});
-TEST_F('BluetoothWebUITest','testAddDevices', function() {
+TEST_F('BluetoothWebUITest', 'testAddDevices', function() {
assertEquals(this.browsePreload, document.location.href);
var pairedDeviceList = $('bluetooth-paired-devices-list');
@@ -166,7 +166,7 @@ TEST_F('BluetoothWebUITest','testAddDevices', function() {
connectButton.click();
});
-TEST_F('BluetoothWebUITest','testDevicePairing', function() {
+TEST_F('BluetoothWebUITest', 'testDevicePairing', function() {
assertEquals(this.browsePreload, document.location.href);
var pairedDeviceList = $('bluetooth-paired-devices-list');
@@ -224,7 +224,7 @@ TEST_F('BluetoothWebUITest','testDevicePairing', function() {
fakeDevice.name));
});
-TEST_F('BluetoothWebUITest','testConnectionState', function() {
+TEST_F('BluetoothWebUITest', 'testConnectionState', function() {
assertEquals(this.browsePreload, document.location.href);
var pairedDeviceList = $('bluetooth-paired-devices-list');
@@ -295,7 +295,7 @@ TEST_F('BluetoothWebUITest','testConnectionState', function() {
});
-TEST_F('BluetoothWebUITest','testMaliciousInput', function() {
+TEST_F('BluetoothWebUITest', 'testMaliciousInput', function() {
assertEquals(this.browsePreload, document.location.href);
var unpairedDeviceList = $('bluetooth-unpaired-devices-list');

Powered by Google App Engine
This is Rietveld 408576698