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,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset=utf-8>
<title>Example</title>
</head>
<body>
<p>Login names can only use letters from A to Z (upper or lowercase)
and the character underscore (_) and minus (-).
For example: <code its-allowed-characters="[a-zA-Z_\-]">Huck_Finn</code>.</p>
</body>
</html>

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset=utf-8>
<title>Example</title>
<link href="allowedcharacters2htmlrules.xml" rel="its-rules"/>
</head>
<body>
<p>Login names can only use letters from A to Z (upper or lowercase)
and the character underscore (_) and minus (-).
For example: <code>Huck_Finn</code>.</p>
</body>
</html>

View file

@ -0,0 +1,3 @@
<its:rules xmlns:its="http://www.w3.org/2005/11/its" xmlns:h="http://www.w3.org/1999/xhtml" version="2.0">
<its:allowedCharactersRule allowedCharacters="[a-zA-Z_\-]" selector="//h:p/h:code"/>
</its:rules>

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Example</title>
<link href="allowedcharacters3htmlrules.xml" rel="its-rules"/>
</head>
<body>
<p>Login names can only use letters from A to Z (upper or lowercase)
and the character underscore (_) and minus (-).
For example: <code id="name">Huck_Finn</code>.</p>
</body>
</html>

View file

@ -0,0 +1,4 @@
<its:rules xmlns:its="http://www.w3.org/2005/11/its" xmlns:h="http://www.w3.org/1999/xhtml" version="2.0">
<its:param name="allowedcharsParam">name</its:param>
<its:allowedCharactersRule allowedCharacters="[a-zA-Z_\-]" selector="//h:p/h:code[@id=$allowedcharsParam]"/>
</its:rules>

View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Example</title>
<script type="application/its+xml">
<its:rules xmlns:its="http://www.w3.org/2005/11/its" xmlns:h="http://www.w3.org/1999/xhtml" version="2.0">
<its:param name="acParam">name</its:param>
<its:allowedCharactersRule allowedCharacters="[a-zA-Z_\-]" selector="//h:code[@id=$acParam]"/>
</its:rules>
</script>
</head>
<body>
<p>Login names can only use letters from A to Z (upper or lowercase)
and the character underscore (_) and minus (-).
For example: <code id="name">Huck_Finn</code>.</p>
</body>
</html>