import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo

This commit is contained in:
Roy Tam 2018-01-19 03:59:58 +08:00
commit dcd9973243
150858 changed files with 23884658 additions and 0 deletions

View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>&lt;map&gt;</title>
</head>
<body>
<!-- is block, contains blocks and <area> -->
<map class="class" id="id" name="id" lang="en">
<h2>header</h2>
<p><area alt="text" href='foo' coords="1,2,3,4">p</p>
<p>text</p>
<p><area alt="text" href='foo' coords="3,2,5,4">p</p>
<p>text2</p>
</map>
<!-- can contain interactive -->
<map id='foo' name="foo">
<p><a>text</a></p>
<p><area alt="text" href='foo' coords="3,2,5,4">p</p>
</map>
<!-- map with flow content and flow parent -->
<div><map name=foo><p>foo</p></map></div>
</body>
</html>

View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>&lt;map&gt;</title>
</head>
<body>
<!-- is block, contains blocks and <area> -->
<map name="foo" class="class" id="id" lang="en">
<h2>header</h2>
<area alt="text" coords="1,2,3,4">
<p>text</p>
<area alt="text" coords="5,2,3,4">
<p>text2</p>
</map>
<!-- can contain interactive -->
<map>
<p><a>text</a></p>
<area alt="text" coords="5,2,3,4">
</map>
<!-- map with flow content and phrasing parent -->
<span><map name=foo><p>foo</p></map></span>
</body>
</html>