Update CSS tests to revision 135b269a1d9f5ce7862ab7426578bd56e2add740

This commit is contained in:
Ms2ger
2015-09-18 16:05:28 +02:00
parent 7f2d81933a
commit bff545d198
1882 changed files with 16167 additions and 10909 deletions

View File

@@ -1,24 +1,25 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Test: Outline-style set to 'dashed'</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
<link rel="help" href="http://www.w3.org/TR/CSS21/ui.html#propdef-outline-style">
<link rel="help" href="http://www.w3.org/TR/CSS21/ui.html#dynamic-outlines">
<meta name="flags" content="">
<meta name="assert" content="Outline style 'dashed' results in a dashed outline.">
<style type="text/css">
div
{
height: 1in;
outline-style: dashed;
outline-color: blue;
width: 1in;
}
</style>
</head>
<body>
<p>Test passes if there is a dashed box below.</p>
<div>Filler Text</div>
</body>
</html>
<!DOCTYPE html>
<html><head><meta charset="utf-8">
<title>CSS Basic User Interface Test: outline-style - dashed (basic)</title>
<link href="http://www.intel.com/" rel="author" title="Intel">
<link href="mailto:shiyoux.tan@intel.com" rel="author" title="Shiyou Tan">
<link href="http://www.w3.org/TR/css3-ui/#outline-style" rel="help" title="7.3. 'outline-style' property">
<link href="http://www.w3.org/TR/CSS21/box.html#value-def-border-style" rel="help">
<link href="reference/outline-style-003-ref.htm" rel="match">
<meta content="" name="flags">
<meta content="Test checks that the outline style is dashed when outline-style set dashed" name="assert">
<style>
#test {
height: 150px;
margin: 30px;
outline-color: green;
outline-style: dashed;
outline-width: 2px;
width: 150px;
}
</style>
</head><body>
<p>Test passes if there is a blank square whose border is <strong>green dashed</strong>.</p>
<div id="test"></div>
</body></html>