473,395 Members | 1,343 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Microsoft/W3C HTML 4 Test Suite

Just found this little utility over at w3.org. It's interesting to see that
IE6 fails a number of the specification tests. Should this imply that
Microsoft will be putting forth a concerted effort to match the specs in
IE7?

Are there any pertinent articles w/ Microsoft people talking about IE7?
Jul 20 '05 #1
18 2674
In article <Cl*****************@newssvr29.news.prodigy.com> in
comp.infosystems.www.authoring.html, Kevin C. <no****@fake.com>
wrote:
Just found this little utility over at w3.org. It's interesting to see that
IE6 fails a number of the specification tests. Should this imply that
Microsoft will be putting forth a concerted effort to match the specs in
IE7?


There's not going to be an IE7, at least not as separate product.

And if Microsoft put forth any effort to match public open
standards, it would represent a very large (and welcome) change of
direction by corporate management.

--
Stan Brown, Oak Road Systems, Cortland County, New York, USA
http://OakRoadSystems.com/
HTML 4.01 spec: http://www.w3.org/TR/html401/
validator: http://validator.w3.org/
CSS 2 spec: http://www.w3.org/TR/REC-CSS2/
2.1 changes: http://www.w3.org/TR/CSS21/changes.html
validator: http://jigsaw.w3.org/css-validator/
Jul 20 '05 #2
"Kevin C." <no****@fake.com> wrote in message
news:Cl*****************@newssvr29.news.prodigy.co m...
Just found this little utility over at w3.org. It's interesting to see that IE6 fails a number of the specification tests. Should this imply that
Microsoft will be putting forth a concerted effort to match the specs in
IE7?

Are there any pertinent articles w/ Microsoft people talking about IE7?


There are two issues here:

1. Better IE support of standards: Microsoft's stated policy for years has
been that it is more interested in responding to customers' needs than with
complying with standards. So you'll only see better IE standards support
when customers demand it.

2. IE 7: the next browser will come with the next version of Windows -- in
2005 or 2006 -- and will not work with current versions of Windows. For
more on this, see http://www.upsdell.com/BrowserNews/b....htm#microsoft

Jul 20 '05 #3
C A Upsdell wrote:

Better IE support of standards: Microsoft's stated policy for years has
been that it is more interested in responding to customers' needs than with
complying with standards. So you'll only see better IE standards support
when customers demand it.


I think the situation is a tad more complicated than MS would have us
believe, but there's little point in arguing with ciwah about the
*stated* policy of MS.

--
Brian
follow the directions in my address to email me

Jul 20 '05 #4
C A Upsdell:
1. Better IE support of standards: Microsoft's stated policy for years has
been that it is more interested in responding to customers' needs than with
complying with standards. So you'll only see better IE standards support
when customers demand it.


In MSIE 6 they corrected lots of things in the CSS support, e.g. the
boxmodel. Was all that because customers demanded it?

--
Bertilo Wennergren <be******@gmx.net> <http://www.bertilow.com>

Jul 20 '05 #5
Kevin C. wrote:
Just found this little utility over at w3.org. It's interesting to see
that IE6 fails a number of the specification tests. Should this imply
that Microsoft will be putting forth a concerted effort to match the
specs in IE7?
No. Microsoft will do no such thing unless their dominance on the browser
market is threatened. Hopefully this *can* happen within a few years, see
below, but a safer bet is that the .NET framework will be strengthened on
the clientside, implying a further setback for standards compliance.
Are there any pertinent articles w/ Microsoft people talking about
IE7?


A number of articles targetting IE7 for 2005 is referenced at
<url:http://www.mozillazine.org/talkback.html?article=3244>. A forthcoming
update to IE6, focusing on lowered standard compliance, was announced this
week on <url:http://msdn.microsoft.com/ieupdate/>.

--
Wired Earp
Wunderbyte
Jul 20 '05 #6
On Sat, 11 Oct 2003 17:08:34 +0000 (UTC), Wired Earp
<wi***************@wunderbyte.com> wrote:
A forthcoming
update to IE6, focusing on lowered standard compliance, was announced this
week on <url:http://msdn.microsoft.com/ieupdate/>.


Could you explain how it's lowered standard compliance?

Jim.
--
comp.lang.javascript FAQ - http://jibbering.com/faq/

Jul 20 '05 #7
I wrote:
A forthcoming update to IE6, focusing on lowered standard
compliance, was announced this week

Jim Ley wondered: Could you explain how it's lowered standard compliance?
That was mostly just a joke to put things into perspective, but a new non-
validating attribute does seem to be a central modification. Quoting from
<url:http://msdn.microsoft.com/ieupdate/activexchanges.asp#fix_data>
The OBJECT element for an ActiveX control has a new attribute:
NOEXTERNALDATA. Specify true for this attribute to indicate that the
control does not access remote data and that Internet Explorer should
not prompt the user


Referring to the soon to be commonplace prompt-boxes warning the user about
active content - be that Shockwave Flash, Internet Explorer XML extras or
plugin-enabled SVG content - following the Eola lawsuit. By some twist of
things I am actually rather enjoyed by this apparent regression in user
experience. I personally regard Macromedias ActionScript product as a
powerful, imaginative, consistant, fun and cost-effective development
platform, but all the more threatining it is to the advance of more
important technologies. Only browsers with a strong native support of
internet standards will remain unaffected by this commotion, underlining
their head-start on things. Perhaps a transitional period of prompt boxes
will focus developers attention away from non-standard frameworks; perhaps
something positive will emerge if and when Microsoft decides to un-corner
themselves from platform-specific Active-X technologies.
--
Wired Earp
Wunderbyte
Jul 20 '05 #8
On Sat, 11 Oct 2003 20:01:40 +0000 (UTC), Wired Earp
<wi***************@wunderbyte.com> wrote:
That was mostly just a joke to put things into perspective, but a new non-
validating attribute does seem to be a central modification.


new attributes can be trivially made to validate in a HTML by using
the internal subset, or a different doctype. Such behaviour is not
invalid.

Jim.
--
comp.lang.javascript FAQ - http://jibbering.com/faq/

Jul 20 '05 #9
Jim Ley wrote:

new attributes can be trivially made to validate in a HTML by using
the internal subset, or a different doctype. Such behaviour is not
invalid.


I'd think it would be more in the spirit of standards for it to be:
<param name="NOEXTERNALDATA" value="true">

or:
<param name="external_data" value="false">
Jul 20 '05 #10
On Sat, 11 Oct 2003 20:43:48 -0400, Keith Bowes <do****@spam.me>
wrote:
Jim Ley wrote:
I'd think it would be more in the spirit of standards for it to be:
<param name="NOEXTERNALDATA" value="true">


I disagree, the parameters are data to be passed to the object,
they're not metadata about the object. (and it would limit objects
from recieving parameters called NOEXTERNALDATA.)

Jim.
--
comp.lang.javascript FAQ - http://jibbering.com/faq/

Jul 20 '05 #11
In article <Xn**********************@212.242.40.196> in
comp.infosystems.www.authoring.html, Wired Earp
<wi***************@wunderbyte.com> wrote:
A forthcoming
update to IE6, focusing on lowered standard compliance, was announced this
week on <url:http://msdn.microsoft.com/ieupdate/>.


It's not there now, only some blather about ActiveX and Java.

--
Stan Brown, Oak Road Systems, Cortland County, New York, USA
http://OakRoadSystems.com/
HTML 4.01 spec: http://www.w3.org/TR/html401/
validator: http://validator.w3.org/
CSS 2 spec: http://www.w3.org/TR/REC-CSS2/
2.1 changes: http://www.w3.org/TR/CSS21/changes.html
validator: http://jigsaw.w3.org/css-validator/
Jul 20 '05 #12
In article <3f****************@news.cis.dfn.de>, one of infinite monkeys
at the keyboard of ji*@jibbering.com (Jim Ley) wrote:
new attributes can be


There's a huge gulf between "can be" and "will be" - and that's setting aside
possible browser issues with the techniques you suggest.

/me suspects wiredearp's point was rather well-made:-)

--
Nick Kew

In urgent need of paying work - see http://www.webthing.com/~nick/cv.html
Jul 20 '05 #13
Tim
On Sat, 11 Oct 2003 11:09:41 -0400,
Stan Brown <th************@fastmail.fm> wrote:
And if Microsoft put forth any effort to match public open
standards, it would represent a very large (and welcome) change of
direction by corporate management.


And half the world would die of shock and surprise...

--
My "from" address is totally fake. (Hint: If I wanted e-mails from
complete strangers, I'd have put a real one, there.) Reply to usenet
postings in the same place as you read the message you're replying to.
Jul 20 '05 #14
"Bertilo Wennergren" <be******@gmx.net> wrote in message
news:bm*************@news.t-online.com...
C A Upsdell:
1. Better IE support of standards: Microsoft's stated policy for years has been that it is more interested in responding to customers' needs than with complying with standards. So you'll only see better IE standards support when customers demand it.


In MSIE 6 they corrected lots of things in the CSS support, e.g. the
boxmodel. Was all that because customers demanded it?


Certainly that is what Microsoft's stated policy would indicate. But you
will note that IE6 uses the DOCTYPE to decide how strictly to support the
standards, allowing the many customers with legacy sites to choose to
support IE6 without bringing their sites up to standards.

Jul 20 '05 #15
"Wired Earp" <wi***************@wunderbyte.com> wrote in message
news:Xn***********************@212.242.40.196...
I wrote:
A forthcoming update to IE6, focusing on lowered standard
compliance, was announced this week


Jim Ley wondered:
Could you explain how it's lowered standard compliance?


That was mostly just a joke to put things into perspective, but a new non-
validating attribute does seem to be a central modification. Quoting from
<url:http://msdn.microsoft.com/ieupdate/activexchanges.asp#fix_data>


The W3C is very concerned about the implications of the Eolas patent. I am
sure that, if the ruling in the recent Eolas court case is not reversed,
such a new attribute will be added to the standards.
Jul 20 '05 #16
C A Upsdell:
"Bertilo Wennergren" <be******@gmx.net> wrote in message
news:bm*************@news.t-online.com...
C A Upsdell:
1. Better IE support of standards: Microsoft's stated policy for years
has been that it is more interested in responding to customers' needs than
with complying with standards. So you'll only see better IE standards
support when customers demand it.
In MSIE 6 they corrected lots of things in the CSS support, e.g. the
boxmodel. Was all that because customers demanded it?

Certainly that is what Microsoft's stated policy would indicate.
But it doesn't seem very likely, unless you count the "c.i.w.a.h"
gang (that includes me) as a significant portion of the MS customers.
But you
will note that IE6 uses the DOCTYPE to decide how strictly to support the
standards, allowing the many customers with legacy sites to choose to
support IE6 without bringing their sites up to standards.


As do Mozilla and Opera.

--
Bertilo Wennergren <be******@gmx.net> <http://www.bertilow.com>

Jul 20 '05 #17
"Bertilo Wennergren" <be******@gmx.net> wrote in message
news:bm*************@news.t-online.com...
C A Upsdell:
In MSIE 6 they corrected lots of things in the CSS support, e.g. the
boxmodel. Was all that because customers demanded it?
Certainly that is what Microsoft's stated policy would indicate.


But it doesn't seem very likely, unless you count the "c.i.w.a.h"
gang (that includes me) as a significant portion of the MS customers.


Seems likely to me. MS pays a lot of attention to corporate customers, and
I am sure that many such customers are interested in improved CSS support
and greater compliance with standards because this helps them enhance their
sites, make more use of CSS to more easily restyle sites, etc., etc., etc.
But you
will note that IE6 uses the DOCTYPE to decide how strictly to support the standards, allowing the many customers with legacy sites to choose to
support IE6 without bringing their sites up to standards.


As do Mozilla and Opera.


And Safari. But for different reasons. The other browser makers embrace
standards enthusiastically and support quirks-like modes only because their
market-share would otherwise collapse. Whereas Microsoft must have
standards thrust upon them, and supports standards-like modes only because
important customers (not us) demand this.
Jul 20 '05 #18
In article
<vO**********************@news01.bloor.is.net.cabl e.rogers.com> in
comp.infosystems.www.authoring.html, C A Upsdell <cupsdell0311XXX@->
wrote:
Seems likely to me. MS pays a lot of attention to corporate customers, and
I am sure that many such customers are interested in improved CSS support
and greater compliance with standards because this helps them enhance their
sites, make more use of CSS to more easily restyle sites, etc., etc., etc.


In a logical world, that would be true.

But in fact a great majority of corporate IT departments have bought
"Microsoft = Internet" hook line and sinker. I guess it's easier
than doing research and thinking. So they don't care about standards
compliance, they care about having things pretty on MSIE because
"only a few cranks use other browsers".

One IT guy at my college uninstalls Mozilla from every computer
where I install it, because he's convinced it is a security risk --
unlike MSIE. One guess where he got that idea.

--
Stan Brown, Oak Road Systems, Cortland County, New York, USA
http://OakRoadSystems.com/
HTML 4.01 spec: http://www.w3.org/TR/html401/
validator: http://validator.w3.org/
CSS 2 spec: http://www.w3.org/TR/REC-CSS2/
2.1 changes: http://www.w3.org/TR/CSS21/changes.html
validator: http://jigsaw.w3.org/css-validator/
Jul 20 '05 #19

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Nunya D. Bidness | last post by:
If anyone is interested in testing these components goto http://www.vibrantinnovations.com/vibrantlayouttools.asp The Vibrant Layout Tools ActiveX component is a suite of tools that allow...
3
by: Jan Decaluwe | last post by:
I'm working on a unit test for a finite state machine (FSM). The FSM behavior is specified in a dictionary called transitionTable. It has a key per state with a tuple of possible transitions as...
81
by: sinister | last post by:
I wanted to spiff up my overly spartan homepage, and started using some CSS templates I found on a couple of weblogs. It looks fine in my browser (IE 6.0), but it doesn't print right. I tested...
0
by: Phlip | last post by:
C++ newsgroupies: I wrote a parser to solve math expressions like "3.0 ^(4 - 5)", or "3 / 8". Below my sig is test.h, the file containing a tiny test framework. Using it and Test-Driven...
2
by: Podi | last post by:
Hi, Newbie question about unittest. I am having trouble passing a variable to a test class object. MyCase class will potentially have many test functions. Any help would be much...
3
by: rdps | last post by:
I am a newbie and that says it all about posting a basic doubt. I still hope someone helps me out . I am unit testing some modules. My test module is in diff file than the modules to be tested....
1
by: foolproofplan | last post by:
I have a situation where I need to convert an xml file into two types of tables in html. I have never done anything like this before, so I have been reading up on it online. However, I am not 100...
2
by: prem | last post by:
Hi, Anybody know if there are any *FREE* ANSI C test suite for C/C++ for Compiler available? Any link/pointers is appreciated /Prem
4
by: oksid | last post by:
Hello, I'm writing a C99 preprocessor and I want to check its compliance with the ISO standard. I would like to know what's the best C99 test suite ? GCC seems to have a large set of test...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.