Skip to content

Commit 12e8eb9

Browse files
committed
[css2] Added tty media type and note about pixel units
--HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%40446
1 parent dfba6f6 commit 12e8eb9

1 file changed

Lines changed: 43 additions & 29 deletions

File tree

css2/media.src

Lines changed: 43 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
22
<html lang="en">
3-
<!-- $Id: media.src,v 1.23 1997-11-21 00:08:06 ian Exp $ -->
3+
<!-- $Id: media.src,v 1.24 1997-11-26 00:10:38 ian Exp $ -->
44
<HEAD>
55
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
66
<TITLE>Media types</TITLE>
7-
<LINK rel="next" href="box.html">
7+
<LINK rel="next" href="flowobj.html">
88
<LINK rel="previous" href="cascade.html">
99
<LINK rel="STYLESHEET" href="style/default.css" type="text/css">
1010
</HEAD>
@@ -117,7 +117,7 @@ save the UA a fruitless download.
117117

118118
<pre>
119119
@import url(fineprint.css) print;
120-
@import url(blueish.css) projection, tv;
120+
@import url(bluish.css) projection, tv;
121121
</pre>
122122
</div>
123123

@@ -132,51 +132,65 @@ class="index-inst" title="@media">@media</span>. However, user agents
132132
that elect to support the devices in the following list must recognize
133133
the associated media type:
134134

135-
<ul>
136-
137-
<li><samp>SCREEN:</samp> intended primarily for scrolled color computer
135+
<dl>
136+
<dt><strong>screen</strong>
137+
<dd>Intended primarily for scrolled color computer
138138
screens. See the section on
139139
<a href="#scrolled-media">scrollable media</a> for more information.
140140

141-
<li><samp>PRINT:</samp> intended for paged, opaque
142-
material and for documents viewed on screen in print preview mode.
143-
Please consult the section on <a href="page.html">paged media</a> for
144-
information about formatting issues that are specific to paged media.
141+
<dt><strong>tty</strong>
142+
<dd>Intended for media using a fixed-pitch character
143+
grid, such as teletypes, terminals, or portable devices with limited
144+
display capabilities.
145+
146+
<P>Authors should not use <a href="syndata.html#pixel-units">pixel
147+
units</a> with the "tty" media type.
145148

146-
<li><samp>PROJECTION:</samp> intended for projected presentations, for
149+
<dt><strong>tv</strong>
150+
<dd>Intended for television-type devices (low
151+
resolution, color, limited scrollability).
152+
153+
<dt><strong>projection</strong>
154+
<dd>Intended for projected presentations, for
147155
example projectors or print to transparencies.
148156
Please consult the section on <a href="page.html">paged media</a> for
149157
information about formatting issues that are specific to paged media.
150158

151-
<li><samp>BRAILLE:</samp> intended for braille tactile feedback
152-
devices. [HWL: we should also have a media type for Braille printers]
159+
<dt><strong>handheld</strong>
160+
<dd>Intended for handheld devices (small
161+
screen, monochrome, limited bandwidth).
153162

154-
<li><samp>AURAL:</samp> intended for speech synthesizers. See the
155-
section on <a href="./aural.html">aural style sheets</a> for details.
163+
<dt><strong>print</strong>
164+
<dd>Intended for paged, opaque material and for documents viewed on
165+
screen in print preview mode. Please consult the section on <a
166+
href="page.html">paged media</a> for information about formatting
167+
issues that are specific to paged media.
156168

157-
<li><samp>TV:</samp> intended for television-type devices (low
158-
resolution, color, limited scrollability).
169+
<dt><strong>braille</strong>
170+
<dd>Intended for braille tactile feedback
171+
devices. [HWL: we should also have a media type for Braille printers]
159172

160-
<li><samp>HANDHELD:</samp> intended for handheld devices (small
161-
screen, monochrome, limited bandwidth).
173+
<dt><strong>aural</strong>
174+
<dd>Intended for speech synthesizers. See the
175+
section on <a href="./aural.html">aural style sheets</a> for details.
162176

163-
<li><samp>ALL:</samp> suitable for all devices.
164-
</ul>
177+
<dt><strong>all</strong>
178+
<dd>Suitable for all devices.
179+
</dl>
165180

166-
<P>Media types are case-insensitive.
181+
<P>Media type names are case-insensitive.
167182

168183
<!-- IJ: Include definitions of "visual", "paged", etc. here.
169184
Link to them from the property/descriptor definitions -->
170185

171186
<H3><a name="canvas">The canvas</a></H3>
172187

173188
<P>For all media, the term <span class="index-def" title="canvas">
174-
canvas</span> means "the space where rendering objects are rendered"
175-
(see the <a href="process.html">CSS2
176-
process model</a>). For a screen, the canvas is a rectangular space
177-
generally of fixed width and "infinite" length. For paged media, the
178-
canvas is a sequence of rectangular page boxes of fixed width and height.
179-
For aural media, the canvas is a three dimensional audio space.
189+
canvas</span> means "the space where rendering objects are rendered."
190+
For a screen, the canvas is a rectangular space generally of fixed
191+
width and "infinite" length. For paged media, the canvas is a sequence
192+
of rectangular page boxes of fixed width and height. For aural media,
193+
the canvas is a three dimensional audio space.
180194

181195
<H4><a name="scrolled-media">Scrollable media</a></H4>
182196

@@ -194,7 +208,7 @@ change the dimensions of the canvas when the viewport is resized.
194208

195209
<P>In general, when a document doesn't cover the entire canvas, the
196210
User agent should "borrow" the background of the root element. Since
197-
the BODY element is often percieved as the root element in HTML, this
211+
the BODY element is often perceived as the root element in HTML, this
198212
special rules apply to HTML documents: if
199213
the <span class="propinst-background">'background'</span> value of the
200214
HTML element is different from 'transparent' then use it, else use the

0 commit comments

Comments
 (0)