| Index: chrome/browser/resources/net_internals/http_pipeline_view.js
|
| diff --git a/chrome/browser/resources/net_internals/http_pipeline_view.js b/chrome/browser/resources/net_internals/http_pipeline_view.js
|
| index 39652bea62b1c1cc0413e9f2cec12048a664262b..cc4c9d424cda6e972febdbd83e1827952f316662 100644
|
| --- a/chrome/browser/resources/net_internals/http_pipeline_view.js
|
| +++ b/chrome/browser/resources/net_internals/http_pipeline_view.js
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// 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.
|
|
|
| @@ -89,7 +89,7 @@ var HttpPipelineView = (function() {
|
| if (hasInfo) {
|
| var tablePrinter = createConnectionTablePrinter(
|
| httpPipelinedConnectionInfo);
|
| - tablePrinter.toHTML(this.httpPipelineConnectionsDiv_, 'styledTable');
|
| + tablePrinter.toHTML(this.httpPipelineConnectionsDiv_, 'styled-table');
|
| }
|
|
|
| return true;
|
| @@ -106,7 +106,7 @@ var HttpPipelineView = (function() {
|
| httpPipeliningKnownHosts.length > 0) {
|
| var tabPrinter = createKnownHostsTablePrinter(httpPipeliningKnownHosts);
|
| tabPrinter.toHTML(
|
| - this.httpPipelineKnownHostsDiv_, 'styledTable');
|
| + this.httpPipelineKnownHostsDiv_, 'styled-table');
|
| } else {
|
| this.httpPipelineKnownHostsDiv_.innerHTML = 'None';
|
| }
|
|
|