tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

text-emphasis-style-none-001.xht (1176B)


      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
      3 <html xmlns="http://www.w3.org/1999/xhtml">
      4 	<head>
      5 		<title>CSS Test: text-emphasis-style - none - basic cases</title>
      6 		<link rel="author" title="Makoto Kikuchi" href="mailto:kikuchi@est.co.jp" />
      7 		<link rel="help" title="CSS Text Level 3: 11.2.1.  Emphasis Mark Style: the ‘text-emphasis-style’ property" href="http://www.w3.org/TR/css-text-decor-3/#text-emphasis-style-property" />
      8 		<link rel="match" href="reference/text-emphasis-style-none-001-ref.xht"/>
      9 		<meta name="assert" content="This property applies emphasis marks to the element's text. " />
     10 		<style type="text/css"><![CDATA[
     11 				.parent
     12 				{
     13 					border: solid 1px gray;
     14 					font-size: 2em;
     15 					width: 10em;
     16 				}
     17 				#test
     18 				{
     19 					text-emphasis-style: none;
     20 				}
     21 		]]></style>
     22 	</head>
     23 	<body>
     24 		<div>
     25 			<p>Test passes if a pair of upper and lower "Filler Text" in the square box is identical.</p>
     26 			none
     27 			<div class="parent">
     28 				<div><span id="test">Filler</span> Text</div>
     29 				<br />
     30 				<div>Filler Text</div>
     31 			</div>
     32 		</div>
     33 	</body>
     34 </html>