function ClaroTableTest::testThemeTableStickyHeaders
Same name in other branches
- 10 core/tests/Drupal/KernelTests/Core/Theme/ClaroTableTest.php \Drupal\KernelTests\Core\Theme\ClaroTableTest::testThemeTableStickyHeaders()
Confirm that Claro tables override use of the `sticky-enabled` class.
File
-
core/
tests/ Drupal/ KernelTests/ Core/ Theme/ ClaroTableTest.php, line 22
Class
- ClaroTableTest
- Tests Claro specific table functionality.
Namespace
Drupal\KernelTests\Core\ThemeCode
public function testThemeTableStickyHeaders() {
// Enable the Claro theme.
\Drupal::service('theme_installer')->install([
'claro',
]);
$this->config('system.theme')
->set('default', 'claro')
->save();
$header = [
'one',
'two',
'three',
];
$rows = [
[
1,
2,
3,
],
[
4,
5,
6,
],
[
7,
8,
9,
],
];
$table = [
'#type' => 'table',
'#header' => $header,
'#rows' => $rows,
'#sticky' => TRUE,
];
$this->render($table);
// Confirm that position-sticky is used instead of sticky-enabled.
$this->assertNoRaw('sticky-enabled');
$this->assertRaw('position-sticky');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.