Update web-platform-tests to revision 0d318188757a9c996e20b82db201fd04de5aa255

This commit is contained in:
James Graham 2015-03-27 09:15:38 +00:00
parent b2a5225831
commit 1a81b18b9f
12321 changed files with 544385 additions and 6 deletions

View file

@ -0,0 +1,16 @@
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>body - LINK=yellow</title>
</head>
<body link="yellow">
<p> Test for <b> link="yellow" </b> on body </p>
This <a href="test-body.xhtml">LINK</a> should be displayed in <b>yellow</b><i> if it has not been clicked before </i><br/>
<p>Once clicked, the link will take default color of visited link.<br /></p>
<p>To run this test again in browsers, delete your browsing history and navigate to this page.<br /></p>
<p>
<i>Note - This test checks for User Agent requirement as per HTML5 spec NOT the author requirement</i>
</p>
</body>
</html>

View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>[body - TEXT=00ffff] Reference file</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<style>
body {
color: blue;
}
</style>
<body>
<p>This document should have text color 'Blue' using the RGB Hexadecimal color value of "0000ff". </p>
<p>This test passes if the color of text above matches the image below.</p>
<p><img src="/images/blue.png"/></p>
</body>

View file

@ -0,0 +1,12 @@
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>body - TEXT=00ffff</title>
<link rel="match" href="body_text_00ffff-ref.html"/>
<meta name="assert" content="Test checks that User Agent requirement as per HTML5 spec NOT the author requirement."/>
</head>
<body text="0000ff">
<p>This document should have text color 'Blue' using the RGB Hexadecimal color value of "0000ff". </p>
<p>This test passes if the color of text above matches the image below.</p>
<p><img src="/images/blue.png" /></p>
</body>
</html>

View file

@ -0,0 +1,8 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> This is a test page</title>
</head>
<body>
<p> To rerun this test, delete history and go <a href="body_link.xhtml">back </a> to previous test.</p>
</body>
</html>