The chromium browser renders

      <tr>
        <td class="view-name">
          <?php print $help_type_icon; ?>
          <?php print t('<em>@type</em> @base view: <strong>@view</strong>', array('@type' => $view->type, '@view' => $view->name, '@base' => $view->base)); ?>
          <?php if (!empty($view->tag)): ?>
            &nbsp;(<?php print $view->tag; ?>)
          <?php endif; ?>
        </td>
        <td class="view-ops"><?php print $view->ops ?></td>
      </tr>
      <tr>
        <td>
          <?php if ($view->title): ?>
            <?php print t('Title: @title', array('@title' => $view->title)); ?> <br />
          <?php endif; ?>
          <?php if ($view->path): ?>
            <?php print t('Path: !path', array('!path' => $view->path)); ?> <br />
          <?php endif; ?>
          <?php if ($view->displays): ?>
            <em><?php print $view->displays; ?> </em><br />
          <?php endif; ?>
        </td>
// Here is the problem
        <td colspan="2" class="description">
          <?php print $view->description; ?>
        </td>

interesting.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

dawehner’s picture

Status: Active » Needs review
FileSize
78.08 KB
1.75 KB

Here is a patch

merlinofchaos’s picture

Status: Needs review » Needs work

The patch attached does not match the description.

dawehner’s picture

Status: Needs work » Needs review
FileSize
472 bytes

/me sighs

In the meantime chrome can now render such tables fine

dawehner’s picture

Status: Needs review » Fixed

Commited.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.