Server geändert

This commit is contained in:
aschwarz
2023-04-25 13:13:17 +02:00
parent a68b637415
commit 02c150b5f6
638 changed files with 2989 additions and 2989 deletions

View File

@ -179,8 +179,8 @@ class HTMLPurifier_LexerTest extends HTMLPurifier_Harness
$this->assertExtractBody(
'<?xml version="1.0"
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
"https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>xyz</title>
</head>
@ -627,8 +627,8 @@ class HTMLPurifier_LexerTest extends HTMLPurifier_Harness
public function test_tokenizeHTML_emptyTagWithSlashInAttribute()
{
$this->assertTokenization(
'<param name="src" value="http://example.com/video.wmv" />',
array( new HTMLPurifier_Token_Empty('param', array('name' => 'src', 'value' => 'http://example.com/video.wmv')) )
'<param name="src" value="https://example.com/video.wmv" />',
array( new HTMLPurifier_Token_Empty('param', array('name' => 'src', 'value' => 'https://example.com/video.wmv')) )
);
}