Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab

This commit is contained in:
James Graham
2015-03-27 09:18:12 +00:00
parent 1a81b18b9f
commit 2c9faf5363
91915 changed files with 5979820 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CSS Test: cascade mechanism has precedence over inheritance - font boldness</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"/>
<link rel="author" title="James Hopkins" href="james(a)idreamincode.co.uk"/>
<link rel="help" href="http://www.w3.org/TR/CSS21/cascade.html#specified-value"/>
<link rel="help" href="http://www.w3.org/TR/CSS21/cascade.html#inheritance"/>
<meta content="" name="flags"/>
<meta content="When determining the specified value of a property, the cascade mechanism of (user agent, author, user) style sheets has precedence. If no value results from such mechanism, then the property may inherit from its parent. In this testcase, it is presumed that b elements are specified in the user agents style sheets to embold their text content." name="assert"/>
<style type="text/css"><![CDATA[
div {font-weight: normal;}
]]></style>
</head>
<body>
<p>Test passes if the sentence below is bold.</p>
<div><b>This text should be bold.</b></div>
</body>
</html>