gecko-dev/editor/ui/composer/content/EditorInitPage.html

149 lines
3.2 KiB
HTML
Raw Normal View History

1999-04-21 19:11:18 +00:00
<html>
<head>
1999-05-27 04:06:17 +00:00
<title>Ender HTML Test Page</title>
<style type="text/css">
1999-07-14 22:31:43 +00:00
/* Don't set attributes here, or they can't be changed! */
</style>
</head>
1999-07-02 03:56:59 +00:00
<body>
1999-04-21 19:11:18 +00:00
1999-06-13 07:50:17 +00:00
<h2>Here's the deal...</h2>
1999-04-21 19:11:18 +00:00
<p>This is a good place to add in <b>html</b> to aid in testing features
1999-04-21 19:11:18 +00:00
under development. It's also a great place to not use latin.
</p>
<!-- This is a comment;
Here is more of the comment.
-->
<p>
Here is an acute entity: "&aacute;".
1999-07-16 00:13:57 +00:00
This&nbsp;&nbsp;sentence&nbsp;&nbsp;has&nbsp;&nbsp;two&nbsp;&nbsp;&amp;nbsp;&nbsp;&nbsp;tags&nbsp;&nbsp;between&nbsp;&nbsp;each&nbsp;&nbsp;word.
</p>
<div>
1999-04-21 19:11:18 +00:00
<p>
This paragraph is inside a &lt;div&gt;. Here is some
rather boring text. Now is the time for all good men (and women)
to come to the mozilla.org party. And bring the quick brown fox and the lazy dog with you.
1999-08-03 00:59:06 +00:00
For your editing pleasure, here is some <span style="font-weight:bold;">inline style</span> for you.
1999-04-21 19:11:18 +00:00
</p>
</div>
1999-04-21 19:11:18 +00:00
1999-07-02 03:56:59 +00:00
<p class="note">
&quot;This paragraph has &quot;class=note&quot;, so that we can play with styles.&quot;
For example, we might insert generated content, like &quot;Note: &quot; before this
paragraph.
</p>
<p>
Here is some very run-o-the-mill text in a paragraph tag, for those
1999-07-02 03:56:59 +00:00
of you who are into that kind of thing. I think at this point I shall
regale you with some of my inestimable poetry, which will be presented
in blockquote mode for your reading pleasure. This particular sample
was written when I was eleven years old, but is remarkably similar to
the writings of my later "hard-livin" years. It's titled "Reruns":
</p>
<blockquote class="poem">
1999-04-21 19:11:18 +00:00
<h4>Reruns</h4>
Reruns are about as much fun,<br>
as your dad taking all your mun,<br>
1999-04-21 19:11:18 +00:00
and giving it to a nun,<br>
as a contribution.
</blockquote>
<br>
<br>
<br>
<br>
There are 4 br tags on either side of this sentence.
<br>
<br>
<br>
<br>
This text has two spaces between every word
<u>Underlined text with space at end </u><b> and bold text with a space at front</b>
1999-08-10 23:14:12 +00:00
<p>A random list of things to do</p>
<ul>
<li>Status report</li>
<li>Fix bugs</li>
<li>Call home</li>
</ul>
1999-04-21 19:11:18 +00:00
<pre>
Here is some
preformatted text.
1999-04-21 19:11:18 +00:00
Here is some
preformatted text.
1999-04-21 19:11:18 +00:00
</pre>
1999-04-26 14:27:02 +00:00
<ol>
<li>list item 1</li>
<li>list item 2</li>
<li>list item 3</li>
</ol>
1999-07-02 03:56:59 +00:00
<ol class="roman">
<li>list item with child paragraphs
<p>
First child paragraph
</p>
<p>
Second child paragraph
</p>
<p>
Third child paragraph
</p>
</li>
<li>
Another list item
</li>
<li>
Something else.
</li>
<li>
Another thing.
</li>
</ol>
1999-07-28 01:23:53 +00:00
<table border="1">
1999-04-21 19:11:18 +00:00
<tr><td>cell 1 </td><td>cell 2 </td><td>cell 3 </td></tr>
<tr><td>cell 4 </td><td>cell 5 </td><td>cell 6 </td></tr>
<tr><td>cell 7 </td><td>cell 8 </td><td>cell 9 </td></tr>
</table>
1999-07-28 01:23:53 +00:00
<table border="1" id="bigtable">
1999-04-21 19:11:18 +00:00
<tr><td>big cell 1 </td>
<td>
<table BORDER>
<tr><td>nested cell 1 </td><td>nested cell 2 </td></tr>
<tr><td>nested cell 3 </td><td>nested cell 4 </td></tr>
</table>
</td>
</tr>
<tr><td>
<table BORDER>
1999-07-28 01:23:53 +00:00
<tr><td>nested cell 5 </td><td>nested cell 6 </td></tr>
<tr><td>nested cell 7 </td><td>nested cell 8 </td></tr>
1999-04-21 19:11:18 +00:00
</table>
</td><td>big cell 4 </td></tr>
</table>
<p>
One more paragraph for the road. A true Klingon fears not the atrocious
editing file format hoisted on us by html. Well, maybe he does, a little.
But he hides it well.
</p>
</body>
</html>