mirror of https://github.com/fltk/fltk
Add HTML entity tests to test/help-test.html.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11744 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
8eb1517ffc
commit
495d15cf7a
|
@ -4,6 +4,7 @@
|
|||
<H1>Simple HTML Tests</H1>
|
||||
<UL>
|
||||
<LI> <a href="#Plain Test">Plain Text Test</A>
|
||||
<LI> <a href="#Entity Test">HTML Entity Test</A>
|
||||
<LI> <a href="#Pre Test">PRE (preformatted Text) Test</A>
|
||||
<LI> <a href="#Headings">Heading Tests</A>
|
||||
<LI> <a href="#Lists">UL, OL, DL Lists</A>
|
||||
|
@ -38,7 +39,30 @@
|
|||
<FONT FACE="Serif">This should be Serif. 0123456789</FONT><BR>
|
||||
<FONT FACE="Courier">This should be Courier. 0123456789</FONT><BR>
|
||||
<FONT FACE="Symbol">This should be Symbol. 0123456789</FONT>
|
||||
<P>
|
||||
<P>
|
||||
|
||||
<A NAME="Entity Test"></A>
|
||||
<B>HTML Entities: named, hexadecimal, and decimal</B><P>
|
||||
<b>Special characters, formatted as named "HTML Entities", e.g. "&euro;":</b><br>
|
||||
Euro character: "€"<br>
|
||||
Umlaut characters : "ä" "ë" "ï" "ö" "ü" "ß"<br>
|
||||
Umlaut characters : "Ä" "Ë" "Ï" "Ö" "Ü"<br>
|
||||
Special characters : "•" "‰" "©" "™" "®"<br>
|
||||
<br>
|
||||
<b>Other scripts, formatted as hexadecimal "HTML Entities", e.g. "&#x20ac;":</b><br>
|
||||
(Should be the same symbols as below)<br>
|
||||
Euro character: "€"<br>
|
||||
Japanese (Hiragana) : "ぐ" "の"<br>
|
||||
Japanese (Katakana) : "ダ" "ポ"<br>
|
||||
Chinese (CJK Unified Ideographs) : "中" "丳"<br>
|
||||
<br>
|
||||
<b>Other scripts, formatted as decimal "HTML Entities", e.g. "&#8364;":</b><br>
|
||||
(Should be the same symbols as above)<br>
|
||||
Euro character: "€"<br>
|
||||
Japanese (Hiragana) : "ぐ" "の"<br>
|
||||
Japanese (Katakana) : "ダ" "ポ"<br>
|
||||
Chinese (CJK Unified Ideographs) : "中" "丳"<br>
|
||||
<P>
|
||||
|
||||
<A NAME="Pre Test"></A>
|
||||
<B>Preformatted paragraphs</B><PRE>
|
||||
|
|
Loading…
Reference in New Issue