Rubber-stamped by Brady Eidson.
[webbrowser.git] / LayoutTests / fast / html / listing.html
blob77280c383dc545312197672f0b9027c74f47fb10
1 <p>This tests the listing tag. It's an obsolete synonym for the pre tag.</p>
3 <div>Text just before the listing.</div>
4 <listing id="mr. listing" width=100>
5 This text is inside a listing tag.
6 It acts exactly like the pre tag, so the text should be monospaced and not have any line breaks.
7 Also, it eats the very first newline inside the listing, so there should not be a blank line above.
8 </listing>
10 <p>The listing tag has a width in it. To test the JavaScript binding, this page gets the width, here: <a id="width place"></a></p>
12 <script>
13 var listing = document.getElementById("mr. listing");
14 var widthPlace = document.getElementById("width place");
15 widthPlace.appendChild(document.createTextNode(listing.width));
16 </script>