Base: Add HTML character escape test document
Test page for Turkish and Swedish custom characters.
This commit is contained in:
parent
241df7206e
commit
ec9f1af0fb
Notes:
sideshowbarker
2024-07-19 06:18:25 +09:00
Author: https://github.com/asliturk Commit: https://github.com/SerenityOS/serenity/commit/ec9f1af0fbf Pull-request: https://github.com/SerenityOS/serenity/pull/2310 Reviewed-by: https://github.com/linusg
2 changed files with 30 additions and 0 deletions
29
Base/home/anon/www/html-escape-test.html
Normal file
29
Base/home/anon/www/html-escape-test.html
Normal file
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>HTMl Escape</title>
|
||||
</head>
|
||||
<body>
|
||||
<pre>Code Character EscVersion Unicode Bytes Name
|
||||
|
||||
---------------------------------------------------------------------------------------
|
||||
228 ä ä ä U+00E4 C3 A4 LATIN SMALL LETTER A WITH DIAERESIS
|
||||
229 å å å U+00E5 C3 A5 LATIN SMALL LETTER A WITH RING
|
||||
287 ğ ğ ğ U+011F C4 9E LATIN SMALL LETTER G WITH BREVE
|
||||
252 ü ü ü U+00FC C3 BC LATIN SMALL LETTER U WITH DIAERESIS
|
||||
351 ş ş ş U+015F C5 9F LATIN SMALL LETTER S WITH CEDILLA
|
||||
305 ı ı ı U+0131 C4 B1 LATIN SMALL LETTER DOTLESS I
|
||||
246 ö ö ö U+00F6 C3 B6 LATIN SMALL LETTER O WITH DIAERESIS
|
||||
231 ç ç ç U+00E7 C3 A7 LATIN SMALL LETTER C WITH CEDILLA
|
||||
---------------------------------------------------------------------------------
|
||||
196 Ä Ä Ä U+00C4 C3 84 LATIN CAPITAL LETTER A WITH DIAERESIS
|
||||
197 Å Å Å U+00C5 C3 85 LATIN CAPITAL LETTER A WITH RING
|
||||
286 Ğ Ğ Ğ U+011E C4 9E LATIN CAPITAL LETTER G WITH BREVE
|
||||
220 Ü Ü Ü U+00DC C3 9C LATIN CAPITAL LETTER U WITH DIAERESIS
|
||||
350 Ş Ş Ş U+015E C5 9E LATIN CAPITAL LETTER S WITH CEDILLA
|
||||
304 İ İ İ U+0130 C4 B0 LATIN CAPITAL LETTER I WITH DOT ABOVE
|
||||
214 Ö Ö Ö U+00D6 C3 96 LATIN CAPITAL LETTER O WITH DIAERESIS
|
||||
199 Ç Ç Ç U+00C7 C3 87 LATIN CAPITAL LETTER C WITH CEDILLA
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
|
@ -28,6 +28,7 @@ span#ua {
|
|||
<p>Your user agent is: <b><span id="ua"></span></b></p>
|
||||
<p>Some small test pages:</p>
|
||||
<ul>
|
||||
<li><a href="html-escape-test.html">html character escape test</a></li>
|
||||
<li><a href="location.html">window.location property</a></li>
|
||||
<li><a href="percent-css.html">CSS percentage values</a></li>
|
||||
<li><a href="inline-block.html">display: inline-block; test</a></li>
|
||||
|
|
Loading…
Add table
Reference in a new issue