5
votes
8answers
130 views
Best Way to View Generated Source of Webpage?
I'm looking for a tool that will give me the proper generated source including DOM changes made by AJAX requests for input into W3's validator. I've tried the following methods:
…
0
votes
0answers
20 views
Ruby W3C_Validators and Proxy
Hi, I'm trying to use the w3c_validators Ruby gem and I'm inside a proxy. So I wrote up a monkey patch that overrides the send_request method (validators.rb) and it seems to take …
4
votes
3answers
54 views
How to write good alt text for images to help screen reader and blind user to understand what is picture about ?
How to write good alt text for images to help screen reader and blind user to understand what is picture about ? and if we are using Alt text then what should be in a Title="text" …
-1
votes
4answers
69 views
What is the limit of character to use in alt=”text” according to WCAG 2.0?
What is the limit of character to use in alt="text" according to WCAG 2.0?
0
votes
3answers
31 views
W3C Compliance Testing: Methodology
We are going to redesign a large web service which has around 25 unique page templates delivering thousands of pages. One of the major requirements is w3c compliance (html 4.01 tra …
0
votes
3answers
34 views
Whole code of Asp.net page renders in a form tag is it W3C valid?
Whole code of Asp.net page renders in a form tag is it W3C valid to render everything in form tag?
<body>
<form runat="server">
remaining code.....
</form …
0
votes
1answer
18 views
curl w3c-markup-validator localy is slow, how do I make it faster?
I am using curl like this:
curl -s -F "uploaded_file=@/path_to_file;type=text/html" -F output=soap12 http://localhost/w3c-markup-validator/check >text.xml && xsltproc scri …
0
votes
4answers
51 views
Is allowed to make space in terms of semantic, web standards and accessibility and cross browser compatibility?
Is allowed to make space in terms of semantic, web standards and accessibility and cross browser compatibility?
4
votes
2answers
160 views
HTML 5 - Sneaky stuff
HTML 5 is the new W3C definition for HTML and will likely represent the direction the internet goes as people find the next killer apps that work in it.
There are the much publici …
1
vote
3answers
151 views
IE cannot find the W3C XHTML DTD (Error 2146697204)
I have a template that starts every page like this:
<?xml version="1.0" encoding="utf-8"?>
<!-- blah blah-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transition …
0
votes
2answers
14 views
div closing syntax in ie8
I've just discovered that using <div /> instead of <div></div> completely destroys my page in IE8. Even though I only had the empty tag syntax in one single place …
0
votes
3answers
32 views
What is negative point on using W3C presentational xhtml tag ?
If some xhtml tag are presentational but valid in W3C then if i use then what is negative point of using those Tags in terms of semantic, code maintanance. I'm talking about b, big …
1
vote
1answer
55 views
is -negative margin or padding invalid CSS according to W3C ?
is -negative margin or padding are invalid CSS aaccording to W3C ?
2
votes
4answers
87 views
Can we place `<img>` inside `<h1>` according to web standards?
Can we place <img> inside <h1> according to web standards? like this
<h1> Demo text <img src="anyimage.jpg"/> </h1>
0
votes
3answers
140 views
Why are JS scripts usually place in the header of a document?
Why are JS scripts usually place in the header of a document? Is it required by standards, or is it just a convention with no particular reason?
