# Test certain things in Mozilla 1.2.1.

**URL:** https://boards.straightdope.com/t/test-certain-things-in-mozilla-1-2-1/143088
**Category:** About This Message Board
**Created:** [December 16, 2002, 3:43pm UTC](https://boards.straightdope.com/t/test-certain-things-in-mozilla-1-2-1/143088 "2002-12-16T15:43:13Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![Derleth](https://avatars.discourse-cdn.com/v4/letter/d/b9e5f3/32.png) [@Derleth](https://boards.straightdope.com/u/Derleth)
#### Post date: [December 16, 2002, 3:43pm UTC](https://boards.straightdope.com/t/test-certain-things-in-mozilla-1-2-1/143088/1 "2002-12-16T15:43:13Z")

</div>

A test of some things I haven’t had a chance to see for myself in the wild.

Lorem ipsum dolorem est,  
Tora-Bora Budapest!  
Vatis innem? Causin dux.  
Fiat homin, cowsin lux.

TomatoText Courier test Huge test. [EMAIL=libertarian@onewest.net]My email address.

```php
#!/usr/bin/ruby

class Greet
   def initialize(name)
      @name = name
   end
   def to_s
      "Hello, #{@name}!"
   end
end

hi_mom = Greet.new("Mom")
trad = Greet.new("world")
west_coast = Greet.new("sailor")

puts hi_mom.to_s
puts trad
puts "#{west_coast}"

```

Ruby is my favorite OO language. 🙂

(Example made needlessly complex to show off OO functionality.)

Output:

```auto

Hello, Mom!
Hello, world!
Hello, sailor!

```

---

<div class="post-metadata">

### Author: ![Derleth](https://avatars.discourse-cdn.com/v4/letter/d/b9e5f3/32.png) [@Derleth](https://boards.straightdope.com/u/Derleth)
#### Post date: [December 16, 2002, 3:47pm UTC](https://boards.straightdope.com/t/test-certain-things-in-mozilla-1-2-1/143088/2 "2002-12-16T15:47:09Z")

</div>

Everything works. Mozilla is more standards-compliant than Opera, and it supports tabbed browsing. 😃

---

<div class="post-metadata">

### Author: ![Achernar](https://avatars.discourse-cdn.com/v4/letter/a/e274bd/32.png) [@Achernar](https://boards.straightdope.com/u/Achernar)
#### Post date: [December 18, 2002, 12:33am UTC](https://boards.straightdope.com/t/test-certain-things-in-mozilla-1-2-1/143088/3 "2002-12-18T00:33:45Z")

</div>

True, but there’s nothing standards-compliant about those vBulletin features you just tested.

---

<div class="post-metadata">

### Author: ![Mars\_Horizon](https://sea3.discourse-cdn.com/straightdope/user_avatar/boards.straightdope.com/mars_horizon/32/2804_2.png) [@Mars\_Horizon](https://boards.straightdope.com/u/Mars_Horizon)
#### Post date: [December 19, 2002, 4:31pm UTC](https://boards.straightdope.com/t/test-certain-things-in-mozilla-1-2-1/143088/4 "2002-12-19T16:31:01Z")

</div>

Phoenix 0.5 is my latest browser of choice, and it does not display the “reply window” properly on preview. It looks fine intially, but gets all scrunch when i preview a reply.

Still, I like it a lot. No more damn popups!

---

<div class="post-metadata">

### Author: ![Achernar](https://avatars.discourse-cdn.com/v4/letter/a/e274bd/32.png) [@Achernar](https://boards.straightdope.com/u/Achernar)
#### Post date: [December 19, 2002, 8:49pm UTC](https://boards.straightdope.com/t/test-certain-things-in-mozilla-1-2-1/143088/5 "2002-12-19T20:49:12Z")

</div>

**Mars Horizon** , that’s how it’s supposed to appear. Netscape does the same thing.

---

<div class="post-metadata">

### Author: ![Derleth](https://avatars.discourse-cdn.com/v4/letter/d/b9e5f3/32.png) [@Derleth](https://boards.straightdope.com/u/Derleth)
#### Post date: [December 20, 2002, 3:21am UTC](https://boards.straightdope.com/t/test-certain-things-in-mozilla-1-2-1/143088/6 "2002-12-20T03:21:19Z")

</div>

What’s noncompliant about my examples?

---

<div class="post-metadata">

### Author: ![Derleth](https://avatars.discourse-cdn.com/v4/letter/d/b9e5f3/32.png) [@Derleth](https://boards.straightdope.com/u/Derleth)
#### Post date: [December 20, 2002, 3:25am UTC](https://boards.straightdope.com/t/test-certain-things-in-mozilla-1-2-1/143088/7 "2002-12-20T03:25:57Z")

</div>

**Mars** : Mozilla does the same thing, too: Mozilla, Netscape, Phoenix, Galeon, and some others all use the same rendering engine called Gecko. Gecko is designed to be a portable rendering engine multiple browsers can build on, so every browser has the same level of standards-compliance and base functionality. There is a lot of information about building a browser on top of Gecko at [Mozdev](http://www.mozdev.org).

---

<div class="post-metadata">

### Author: ![Achernar](https://avatars.discourse-cdn.com/v4/letter/a/e274bd/32.png) [@Achernar](https://boards.straightdope.com/u/Achernar)
#### Post date: [December 20, 2002, 9:14am UTC](https://boards.straightdope.com/t/test-certain-things-in-mozilla-1-2-1/143088/8 "2002-12-20T09:14:13Z")

</div>

**Derleth** : They make heavy use of the deprecated Font tag.

Also, looking at the code, I see that the Img tag for the smiley has an attribute: alt="". While this does comply strictly, it sort of defeats the purpose of the alt attribute.
