зеркало из https://github.com/mozilla/gecko-dev.git
First Checked In.
This commit is contained in:
Родитель
454b189257
Коммит
974edaafa3
|
@ -0,0 +1,78 @@
|
|||
<html>
|
||||
<body>
|
||||
|
||||
<h2>Ender Editor Test Page</h2>
|
||||
|
||||
<p>This is a good place to add in html to aid in testing features
|
||||
under development. It's also a great place to not use latin.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Here is some very run-o-the-mill text in a paragraph tag, for those
|
||||
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>
|
||||
<h4>Reruns</h4>
|
||||
Reruns are about as much fun,<br>
|
||||
as your dad taking all your mon,<br>
|
||||
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>
|
||||
<pre>
|
||||
Here is some
|
||||
preformated text.
|
||||
Here is some
|
||||
preformated text.
|
||||
</pre>
|
||||
|
||||
<table BORDER>
|
||||
<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>
|
||||
|
||||
|
||||
<table BORDER>
|
||||
<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>
|
||||
<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><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>
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Ender Startup Page</title>
|
||||
|
||||
<style type="text/css">
|
||||
/* This style sheet should be in a seperate file */
|
||||
|
||||
BODY {
|
||||
/* font-family: monospace; */
|
||||
/* white-space: pre; */
|
||||
background-color: #FFFFFF;
|
||||
/* width: 450px; this is a bogus, hard-coded value */
|
||||
margin: 4px 4px 4px 4px;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<pre cols="80">
|
||||
80 char width (for reference only)
|
||||
|----------------------------------------------------------------------------|
|
||||
|
||||
This entire body is in a <PRE> tag, wrapped to 80 columns.
|
||||
|
||||
Typed text will wrap to the window width. To get wrapping at a fixed width, play with the BODY style in this HTML file.
|
||||
|
||||
Welcome to the Gecko Editor Test Bed
|
||||
|
||||
Try typing something...
|
||||
|
||||
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,5 @@
|
|||
|
||||
# content directory
|
||||
EditorAppShell.xul
|
||||
EditorCommands.js
|
||||
EditorInitPage.html
|
|
@ -0,0 +1,37 @@
|
|||
|
||||
#skin directory
|
||||
|
||||
images:ED_Center.gif
|
||||
images:ED_Copy.gif
|
||||
images:ED_Dedent.gif
|
||||
images:ED_HLine.gif
|
||||
images:ED_Indent.gif
|
||||
images:ED_Left.gif
|
||||
images:ED_Numbers.gif
|
||||
images:ED_Redo.gif
|
||||
images:ED_Spell.gif
|
||||
images:ED_Target.gif
|
||||
images:ED_Undo.gif
|
||||
images:ED_Bullets.gif
|
||||
images:ED_Center.gif
|
||||
images:ED_ClearStyle.gif
|
||||
images:ED_Copy.gif
|
||||
images:ED_Cut.gif
|
||||
images:ED_Dedent.gif
|
||||
images:ED_Find.gif
|
||||
images:ED_HLine.gif
|
||||
images:ED_Image.gif
|
||||
images:ED_Indent.gif
|
||||
images:ED_Italic.gif
|
||||
images:ED_Left.gif
|
||||
images:ED_Link.gif
|
||||
images:ED_Numbers.gif
|
||||
images:ED_Paste.gif
|
||||
images:ED_Redo.gif
|
||||
images:ED_Right.gif
|
||||
images:ED_Spell.gif
|
||||
images:ED_Table.gif
|
||||
images:ED_Target.gif
|
||||
images:ED_Underline.gif
|
||||
images:ED_Undo.gif
|
||||
images:ED_Bold.gif
|
|
@ -0,0 +1,38 @@
|
|||
|
||||
#skin directory
|
||||
|
||||
images:ED_Center.gif
|
||||
images:ED_Copy.gif
|
||||
images:ED_Dedent.gif
|
||||
images:ED_HLine.gif
|
||||
images:ED_Indent.gif
|
||||
images:ED_Left.gif
|
||||
images:ED_Numbers.gif
|
||||
images:ED_Redo.gif
|
||||
images:ED_Spell.gif
|
||||
images:ED_Target.gif
|
||||
images:ED_Undo.gif
|
||||
images:ED_Bullets.gif
|
||||
images:ED_Center.gif
|
||||
images:ED_ClearStyle.gif
|
||||
images:ED_Copy.gif
|
||||
images:ED_Cut.gif
|
||||
images:ED_Dedent.gif
|
||||
images:ED_Find.gif
|
||||
images:ED_HLine.gif
|
||||
images:ED_Image.gif
|
||||
images:ED_Indent.gif
|
||||
images:ED_Italic.gif
|
||||
images:ED_Left.gif
|
||||
images:ED_Link.gif
|
||||
images:ED_Numbers.gif
|
||||
images:ED_Paste.gif
|
||||
images:ED_Redo.gif
|
||||
images:ED_Right.gif
|
||||
images:ED_Spell.gif
|
||||
images:ED_Table.gif
|
||||
images:ED_Target.gif
|
||||
images:ED_Underline.gif
|
||||
images:ED_Undo.gif
|
||||
images:ED_Bold.gif
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
#skin directory
|
||||
|
||||
EditorDialog.css
|
|
@ -0,0 +1,78 @@
|
|||
<html>
|
||||
<body>
|
||||
|
||||
<h2>Ender Editor Test Page</h2>
|
||||
|
||||
<p>This is a good place to add in html to aid in testing features
|
||||
under development. It's also a great place to not use latin.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Here is some very run-o-the-mill text in a paragraph tag, for those
|
||||
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>
|
||||
<h4>Reruns</h4>
|
||||
Reruns are about as much fun,<br>
|
||||
as your dad taking all your mon,<br>
|
||||
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>
|
||||
<pre>
|
||||
Here is some
|
||||
preformated text.
|
||||
Here is some
|
||||
preformated text.
|
||||
</pre>
|
||||
|
||||
<table BORDER>
|
||||
<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>
|
||||
|
||||
|
||||
<table BORDER>
|
||||
<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>
|
||||
<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><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>
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Ender Startup Page</title>
|
||||
|
||||
<style type="text/css">
|
||||
/* This style sheet should be in a seperate file */
|
||||
|
||||
BODY {
|
||||
/* font-family: monospace; */
|
||||
/* white-space: pre; */
|
||||
background-color: #FFFFFF;
|
||||
/* width: 450px; this is a bogus, hard-coded value */
|
||||
margin: 4px 4px 4px 4px;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<pre cols="80">
|
||||
80 char width (for reference only)
|
||||
|----------------------------------------------------------------------------|
|
||||
|
||||
This entire body is in a <PRE> tag, wrapped to 80 columns.
|
||||
|
||||
Typed text will wrap to the window width. To get wrapping at a fixed width, play with the BODY style in this HTML file.
|
||||
|
||||
Welcome to the Gecko Editor Test Bed
|
||||
|
||||
Try typing something...
|
||||
|
||||
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,22 @@
|
|||
|
||||
appshell.html
|
||||
status.xul
|
||||
status.html
|
||||
toolbar.xml
|
||||
BrowserInitPage.html
|
||||
contentframe.html
|
||||
sidebar.html
|
||||
xul.css
|
||||
dialogs.css
|
||||
navigator.css
|
||||
navigator.xul
|
||||
saveToDisk.xul
|
||||
viewSource.xul
|
||||
downloadProgress.xul
|
||||
downloadProgress.css
|
||||
navigator-shiny.css
|
||||
navigator-mozillazine0.css
|
||||
navigator-goofy.css
|
||||
navigator-test1.xul
|
||||
raindrops_light.gif
|
||||
skindemo.xul
|
Загрузка…
Ссылка в новой задаче