Update to Drupal 8.0.1. For more information, see https://www.drupal.org/node/2627402
This commit is contained in:
parent
013aaaf2ff
commit
1a0e9d9fac
153 changed files with 1268 additions and 670 deletions
|
@ -205,7 +205,7 @@ class SafeMarkupTest extends UnitTestCase {
|
|||
restore_error_handler();
|
||||
|
||||
$this->assertEquals(E_USER_ERROR, $this->lastErrorNumber);
|
||||
$this->assertEquals('Invalid placeholder: ~placeholder', $this->lastErrorMessage);
|
||||
$this->assertEquals('Invalid placeholder (~placeholder) in string: Broken placeholder: ~placeholder', $this->lastErrorMessage);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -516,6 +516,12 @@ class XssTest extends UnitTestCase {
|
|||
'Image tag with data attribute',
|
||||
array('img')
|
||||
),
|
||||
array(
|
||||
'<a data-a2a-url="foo"></a>',
|
||||
'<a data-a2a-url="foo"></a>',
|
||||
'Link tag with numeric data attribute',
|
||||
array('a')
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue