2008/link-testsuite html_base_href.html,NONE,1.1 html_base_href_b.html,NONE,1.1 html_frame_longdesc.html,NONE,1.1 html_frame_longdesc_b.html,NONE,1.1 html_iframe_longdesc.html,NONE,1.1 html_iframe_longdesc_b.html,NONE,1.1

Update of /sources/public/2008/link-testsuite
In directory hutz:/tmp/cvs-serv29138

Added Files:
	html_base_href.html html_base_href_b.html 
	html_frame_longdesc.html html_frame_longdesc_b.html 
	html_iframe_longdesc.html html_iframe_longdesc_b.html 
Log Message:
a few tests for attributes in HTML with %URI type

--- NEW FILE: html_base_href.html ---
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<title>untitled</title>
	<meta name="author" content="olivier Thereaux">
	<base href="http://www.w3.org/">
</head>
<body>
    <div id="test">
        <p> <span id="test-id">html-5</span>: 
            test for base URI with BASE href element. This BASE URI is OK
        </p>
        <p id="expected" class="200 OK">EXPECTED: 
            checking the BASE URI throws no error
        </p>
    </div>

</body>
</html>

--- NEW FILE: html_iframe_longdesc_b.html ---
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">

<html lang="en">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<title>html_iframe_longdesc</title>
	<meta name="author" content="olivier Thereaux">
	<!-- Date: 2008-01-28 -->
</head>
<body>
<iframe src="emptyframe.html" longdesc="http.php?code=404">
</body>
</html>

--- NEW FILE: html_frame_longdesc.html ---
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
<html lang="en">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<title>frame longdesc test</title>
	<meta name="author" content="olivier Thereaux">
</head>
<FRAMESET cols="33%,33%,33%">
    <FRAME src="emptyframe.html" frameborder="0">
    <FRAME src="emptyframe.html" frameborder="0">
    <FRAME src="emptyframe.html" frameborder="0" longdesc="base-1.html">    
</FRAMESET>
</html>

--- NEW FILE: html_iframe_longdesc.html ---
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">

<html lang="en">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<title>html_iframe_longdesc</title>
	<meta name="author" content="olivier Thereaux">
	<!-- Date: 2008-01-28 -->
</head>
<body>
<iframe src="emptyframe.html" longdesc="base-1.html">
</body>
</html>

--- NEW FILE: html_frame_longdesc_b.html ---
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
<html lang="en">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<title>frame longdesc test</title>
	<meta name="author" content="olivier Thereaux">
</head>
<FRAMESET cols="33%,33%,33%">
    <FRAME src="emptyframe.html" frameborder="0">
    <FRAME src="emptyframe.html" frameborder="0">
    <FRAME src="emptyframe.html" frameborder="0" longdesc="http.php?code=404">    
</FRAMESET>
</html>

--- NEW FILE: html_base_href_b.html ---
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<title>untitled</title>
	<meta name="author" content="olivier Thereaux">
	<base href="./thisURIdoesnotexist/">
</head>
<body>
    <div id="test">
        <p> <span id="test-id">html-5b</span>: 
            test for base URI with BASE href element. This BASE URI is 404
        </p>
        <p id="expected" class="404 error-1">EXPECTED: 
            checking the BASE URI throws an error
        </p>
    </div>

</body>
</html>

Received on Monday, 28 January 2008 03:43:13 UTC