HTML 5 Specifications & Implementations Officially Released
HTML 5 Specifications & Implementations Officially Released
#1
Posted 08 July 2009 - 06:51 AM
Detailed specifications here.
#7
Posted 09 July 2009 - 05:59 AM
Leave the design & layout to CSS you won't have these issues since the browser that don't support the DTD will default into quirks mode and they don't reap the benefits of the page the way it was intended to look.
Of course CSS isn't 100% supported by older browsers either. I actually dropped support all together for IE6 - as Microsoft is in the process of doing the same since IE8 is official now.
#9
Posted 09 July 2009 - 07:17 AM
Nykc, on 9 Jul, 2009 - 07:59 AM, said:
Dude, you totally missed the memo!
Quote
2009-07-02: Today the Director announces that when the XHTML 2 Working Group charter expires as scheduled at the end of 2009, the charter will not be renewed. By doing so, and by increasing resources in the HTML Working Group, W3C hopes to accelerate the progress of HTML 5 and clarify W3C's position regarding the future of HTML. A FAQ answers questions about the future of deliverables of the XHTML 2 Working Group, and the status of various discussions related to HTML. Learn more about the HTML Activity.
-- http://www.w3.org/News/2009#item119
I agree, however. XML is ubiquitous. However, so is writing crappy HTML. Worse, and more to blame, browsers ( IE *cough* ) that support the crap. You see a lot of XHTML transitional, but strict is depressingly rare. To some extent, XHTML is an adoption failure. Even those that claim compliance often break it anyway. The HTML 5 spec does most of what XHTML intended. Maybe now it will stick. Well, if any browser bothers to comply to it.
#10
Posted 09 July 2009 - 08:00 AM
Son of a......
Thanks for the heads up though lol.
That's the thing - are the browsers going to comply? Or are we going to have to write hacks for every fricking browser (hint hint IE)
edit - here is a nice quick reference guide of the new markup.
http://www.veign.com...html5-guide.php
This post has been edited by Nykc: 09 July 2009 - 08:38 AM
#12
Posted 09 July 2009 - 11:53 AM
<li></li>
<br />
<img />
This is the W3C we are talking about, I don't think they would encourage us to start adapting to XHTML standards and then strip all ideas to resort to the failure that was known as Netscape 4 & IE 5/6
#13
Posted 09 July 2009 - 11:54 AM
This post has been edited by MageUK: 09 July 2009 - 11:55 AM
#14
Posted 10 July 2009 - 09:21 AM
Why does Internet Explorer have to dick up the entire world wide web? Seriously - after 8 years of developing websites I have come to the conclusion IE needs to just fold as a browser. Let the banks and governments use that shitty browser all they want, but keep John Q. Public away.
So just for shits and giggles I was looking up some references on the new <canvas> tag. Came across a neat little tutorial and decided to give it a shot. This code has been successfully tested and executed in:
Firefox 3.0.11
Safari 4
Chrome
Opera 9
IE 8
Anyone wanna guess the only browser this code did not render in?
<html>
<head>
<title>Rectangles Using HTML 5 Canvas Tag</title>
<script type="application/x-javascript">
function draw(){
var canvas = document.getElementById('canvas');
if (canvas.getContext){
var ctx = canvas.getContext('2d');
ctx.fillStyle = "rgb(200,0,0)";
ctx.fillRect (10,10,55,50);
ctx.fillStyle = "rgba(0, 0, 200, 0.5)";
ctx.fillRect (30, 30, 55, 50);
}
}
</script>
<style type="text/css">
canvas { border: 1px dashed black; }
</style>
</head>
<body onload="draw();">
<canvas id="canvas" width="150" height="150"></canvas>
</body>
</html>
</rant>
This post has been edited by Nykc: 10 July 2009 - 09:22 AM
#16
Posted 10 July 2009 - 09:29 AM
Of course with Microsoft that is never the case, and they will never get it right - they never have.
Funny how all the "Other Browsers" render unreleased standards just fine.
#17
Posted 10 July 2009 - 09:37 AM
MageUK, on 10 Jul, 2009 - 11:25 AM, said:
Oh, if only this were so! It's a nice dream.
Seriously, with the power of Microsoft, does anyone think they couldn't be the most standard's compliant browser on the planet? I mean, it's not like an entire OS upon which thousands of programs depend. The browser is a piece of software and Microsoft could probably have a new one written from the ground up faster than you can say Chrome.
There are only two conclusions as to the current state of IE. Either it's simply on the agenda to keep the quirks in and make sites break from one browser to the other. Or, the priority of actually fixing it is somewhere on the list under Windows 7 and trimming Ballmer's nose hair.
#18
Posted 10 July 2009 - 09:47 AM
1. Force people into keeping current versions of Front Page.
2. Force people to learn HTML or other WYSIWYG editors.
Microsoft as I stated before has several members on the W3C board.
They have always veered from the norm - JScript, VBScript, Active X, William Shatner I mean come on!
#20
Posted 13 July 2009 - 06:14 AM
MageUK, on 9 Jul, 2009 - 11:54 AM, said:
come on man... f4uck validation! xD kidding
but do you prefer your site validate than use all benefits that the new language is bringing?
maybe the boss wants the site to validate (sh1t boss), but users don't matter with it, most don't even know that this exist.

Add Reply




MultiQuote







| 


